Ejemplo n.º 1
0
 //takes the current hilo bounds and displayes them
 public LoHiForm(SyncForm myParent)
 {
     InitializeComponent();
     parentForm = myParent;
     int[] vals = parentForm.getHiLoBounds();
     lowIPStart.Text = vals[0].ToString();
     lowIPEnd.Text = vals[1].ToString();
     highIPStart.Text = vals[2].ToString();
     highIPEnd.Text = vals[3].ToString();
 }