public frmConnectVS(string VSAddress, InitVS myApp) { // // Required for Windows Form Designer support // InitializeComponent(); // // TODO: Add any constructor code after InitializeComponent call // thisVSAddress = VSAddress; }
public frmAddVM(InitVS myAppAddVM) { // // Required for Windows Form Designer support // InitializeComponent(); // // TODO: Add any constructor code after InitializeComponent call // myApp = myAppAddVM; }
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; }
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; }