Example #1
0
        public frmConnectVS(string VSAddress, InitVS myApp)
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

            //
            // TODO: Add any constructor code after InitializeComponent call
            //
            thisVSAddress = VSAddress;
        }
Example #2
0
        public frmAddVM(InitVS myAppAddVM)
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

            //
            // TODO: Add any constructor code after InitializeComponent call
            //
            myApp = myAppAddVM;
        }
Example #3
0
        public frmRemoveVM(frmMain frmMain, InitVS myAppAdd)
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

            //
            // TODO: Add any constructor code after InitializeComponent call
            //
            myApp         = myAppAdd;
            frmMainRemove = frmMain;
        }
Example #4
0
        public frmCreateVM(string ServerAddress, InitVS myAppCreateVM)
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

            //
            // TODO: Add any constructor code after InitializeComponent call
            //
            myApp = myAppCreateVM;
            if (ServerAddress == "")
            {
                txtVirtualServer.Text = "localhost";
            }
            else
            {
                txtVirtualServer.Text = ServerAddress;
            }
            thisVSAddress = ServerAddress;
        }