public cTweak_Project_s000(
			frm_Main base_ref_in, 
			cTweak_Project_s000.eMode mode_in, 
			dNotifyBase notifyBase_in
		) : base (
			notifyBase_in, 
			1
		) {
			Base_ref = base_ref_in;
			mode_ = mode_in;

			MyForm = new frmTweak_Project_s000(
				new cFlowformForm.dNotifyBase(
					MyForm_notifiedMe
				),
				new cFlowformForm.dNotifyBase(
					MyForm_notifiedMe_aboutNext
				), 
				mode_in
			);
			MyForm.MdiParent = Base_ref;
			//MyForm.MaximizeBox = false;

//			MyProcess = new PO_Tweak_Project(Base_ref);
		}
		public cTweak_Project_s000(
			frm_Main base_ref_in, 
			cTweak_Project_s000.eMode mode_in
		) : this (
			base_ref_in, 
			mode_in, 
			null
		) {}
		public frmTweak_Project_s000(
			cFlowformForm.dNotifyBase notifyBase_in, 
			cFlowformForm.dNotifyBase notifyBase_aboutNext_in, 
			cTweak_Project_s000.eMode mode_in
		) {
			#region Required for Windows Form Designer support...
			InitializeComponent();
			#endregion
			FlowformForm = new cFlowformForm(
				notifyBase_in, 
				notifyBase_aboutNext_in
			);
			#region Event safeguard...
			this.btnNext.Click += new System.EventHandler(FlowformForm.btnNext_Click);
			this.Closed += new System.EventHandler(FlowformForm.FlowformForm_Closed);

			this.btnPath.Click += new System.EventHandler(this.btnPath_Click);
			this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
			this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
			this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click);
			this.btnDefault.Click += new System.EventHandler(this.btnDefault_Click);
			#endregion

			Mode = mode_in;
		}