Ejemplo n.º 1
0
        public static string ShowBox(string txtMessage)
        {
            RefundPwd newMessageBox;

            newMessageBox             = new RefundPwd();
            newMessageBox.label1.Text = txtMessage;
            newMessageBox.ShowDialog();
            return(newMessageBox.Passwd);
        }
Ejemplo n.º 2
0
        public static string ShowBox(string txtMessage, string txtTitle)
        {
            RefundPwd newMessageBox;

            newMessageBox = new RefundPwd();
            newMessageBox.lblTitle.Text = txtTitle;
            newMessageBox.label1.Text   = txtMessage;
            newMessageBox.tbPassword.Focus();
            //tbPassword.Update();
            newMessageBox.ShowDialog();
            return(newMessageBox.Passwd);
        }