Example #1
0
 public Form1()
 {
     InitializeComponent();
     // Create LRU Instances
     lru = new CalTool.LruCom(0);
     lru.selectedComPort = "COM10";
 }
Example #2
0
        public MainForm()
        {
            InitializeComponent();
            //AhrsCom.setParentForm(this);

            // Create LRU Instance
            lru0 = new CalTool.LruCom(0);
            lru0.selectedComPort = "COM10";
        }
Example #3
0
        public MainForm()
        {
            InitializeComponent();

            // Give classes access to mainform
            Chart.setParentForm(this);
            PosFixture.setPort("COM40");

            // Create LRU Instances
            lru0 = new CalTool.LruCom(0);
            // Need to add dropdown box for this
            lru0.selectedComPort = "COM50";

            // Default scale
            Chart.MAX_RATE = 100;
            Chart.MIN_RATE = -100;
        }