Esempio n. 1
0
 private void button1_Click(object sender, EventArgs e)
 {
     id   = textBox1.Text;
     type = comboBox1.Text;
     if (type == "Scan Report")
     {
         Import_Scan_Report scan = new Import_Scan_Report(id);
         scan.Show();
         this.Close();
     }
     else
     {
         import_lab_report lab = new import_lab_report(id);
         lab.Show();
         this.Close();
     }
 }
Esempio n. 2
0
        private void button2_Click(object sender, EventArgs e)
        {
            type = comboBox2.Text;

            var process = new Process
            {
                StartInfo = new ProcessStartInfo
                {
                    FileName = "CSharpSample.exe"
                }
            };

            process.Start();
            process.WaitForExit();

            StreamReader readtext   = new StreamReader(@"out\out.txt");
            string       readmetext = readtext.ReadLine();

            Cloud_Database_FTP cb = new Cloud_Database_FTP();

            string[] data = new string[20];

            data = cb.getPatientDetailsByFID(readmetext);
            id   = data[0];

            readtext.Close();

            if (type == "Scan Report")
            {
                Import_Scan_Report scan = new Import_Scan_Report(id);
                scan.Show();
                this.Close();
            }
            else
            {
                import_lab_report lab = new import_lab_report(id);
                //MessageBox.Show(id + " ");
                lab.Show();
                this.Close();
            }
        }