Example #1
0
 /// <summary>
 /// 우편번호 헬프클릭시
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
 private void picHelper_Click(object sender, EventArgs e)
 {
     try
     {
         this.picHelper.Focus();
         frmPost f = new frmPost(txtAddress1.Text.Trim());
         f.Owner = this;
         f.ShowDialog();
     }
     catch (Exception ex)
     {
         Basic.ShowMessage(3, ex.Message);
     }
 }
Example #2
0
        private void 职务管理ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmPost frm = new frmPost();

            frm.Show(this.dockPanel1);
        }