private void frmManage_Updates_Create_step010_Closed(object sender, System.EventArgs e) {
			if (this.create_step020 != null) {
				this.create_step020.Dispose();
				this.create_step020 = null;
			}

			this.Parent_ref.Close();
		}
		public frmManage_Updates_Create_step030(frmManage_Updates_Create_step020 Parent_ref_) {
			#region Required for Windows Form Designer support...
			this.InitializeComponent();
			#endregion
			#region Event safeguard...
			this.btnBack.Click += new System.EventHandler(this.btnBack_Click);
			this.btnNext.Click += new System.EventHandler(this.btnNext_Click);
			this.Closed += new System.EventHandler(this.frmManage_Updates_Create_step030_Closed);
			#endregion
			this.Parent_ref = Parent_ref_;
		}
		private void btnNext_Click(object sender, System.EventArgs e) {
			if (this.create_step020 == null) {
				this.create_step020 = new frmManage_Updates_Create_step020(this);
				this.create_step020.MdiParent = this.Parent_ref.MdiParent;
			}
			this.create_step020.Bind_Searches();

			this.Hide();
			this.create_step020.Show();
		}