VAGSuite.frmInfoBox.frmInfoBox C# (CSharp) Method

frmInfoBox() public method

public frmInfoBox ( string Message ) : System
Message string
return System
        public frmInfoBox(string Message)
        {
            InitializeComponent();
            label1.Text = Message;
            this.ShowDialog();
        }