Esempio n. 1
0
 public UserForm(string host, string user_ip, ConnectingForm caller)
 {
     InitializeComponent();
     this.host      = host;
     this.user_ip   = user_ip;
     this.caller    = caller;
     textBox1.Text += "[IP]: " + host;
 }
Esempio n. 2
0
 public ControllingForm(string host, string my_ip, ConnectingForm caller)
 {
     InitializeComponent();
     this.host   = host;
     user_ip     = my_ip;
     this.caller = caller;
     boxes       = new RichTextBox[] { processes_richTextBox, disks_richTextBox, virtmem_richTextBox,
                                       physmem_richTextBox, sys_richTextBox };
 }