private void 비밀번호찾기ToolStripMenuItem_Click(object sender, EventArgs e)
        {                              //MenuStrip 정보(I)->비밀번호찾기(F)를 클릭시 발생하는 이벤트
            PwdFind p = new PwdFind(); //PwdFind 폼 생성

            p.ShowDialog();            //PwdFind 폼이 나타난다.
        }
        private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {                              //비밀번호 찾기 LinkLabel을 클릭시 발생하는 이벤트
            PwdFind p = new PwdFind(); //PwdFind 폼 생성

            p.ShowDialog();            //PwdFind 폼이 나타난다.
        }