Exemplo n.º 1
0
 public frmCaptureImage(frmPatientRecord refFrm, int noOfImage)
 {
     InitializeComponent();
     initDevide();
     this.frmReference = refFrm;
     this.nudNoOfPicture.Value = noOfImage;
 }
Exemplo n.º 2
0
 public frmCaptureImage(frmPatientRecord refFrm, int noOfImage)
 {
     InitializeComponent();
     initDevide();
     this.frmReference         = refFrm;
     this.nudNoOfPicture.Value = noOfImage;
 }
Exemplo n.º 3
0
        }        //MnuItemCatogeryListClick

        private void mnuBtnPatientRecord_Click(object sender, EventArgs e)
        {
            frmPatientRecord frmTmp = new frmPatientRecord();

            frmTmp.setParent(this);
            frmTmp.setReferenceConnectNLoadData(ref this.myConn, ref this.pdc.ReportDefinition, ref this.pdc.reportHeader, this.pdc.ReportTitle);
            frmTmp.ShowDialog();
            frmTmp = null;
        }//MnuBtnPatientRecordClick
 void BtnShowProfileClick(object sender, System.EventArgs e)
 {
     frmPatientRecord frmTmp;
     if (lstProfile.SelectedItems!=null)
         if (lstProfile.SelectedItems.Count>0)
         {
             frmTmp = new frmPatientRecord();
             frmTmp.setReferenceConnectNLoadData(ref this.refConn, ref ms, ref this.reportImageTitle, this.reportTitle);
             frmTmp.LoadProfile(lstProfile.SelectedItems[0].Text);
             this.Dispose();
             frmTmp.ShowDialog();
         }
 }
Exemplo n.º 5
0
        void BtnShowProfileClick(object sender, System.EventArgs e)
        {
            frmPatientRecord frmTmp;

            if (lstProfile.SelectedItems != null)
            {
                if (lstProfile.SelectedItems.Count > 0)
                {
                    frmTmp = new frmPatientRecord();
                    frmTmp.setReferenceConnectNLoadData(ref this.refConn, ref ms, ref this.reportImageTitle, this.reportTitle);
                    frmTmp.LoadProfile(lstProfile.SelectedItems[0].Text);
                    this.Dispose();
                    frmTmp.ShowDialog();
                }
            }
        }
Exemplo n.º 6
0
 public void setRefFrom(frmPatientRecord refF)
 {
     this.frm4Ref = refF;
     this.isSearching =true;
 }
Exemplo n.º 7
0
 public void setRefFrom(frmPatientRecord refF)
 {
     this.frm4Ref     = refF;
     this.isSearching = true;
 }
Exemplo n.º 8
0
 private void mnuBtnPatientRecord_Click(object sender, EventArgs e)
 {
     frmPatientRecord frmTmp = new frmPatientRecord();
     frmTmp.setParent(this);
     frmTmp.setReferenceConnectNLoadData(ref this.myConn, ref this.pdc.ReportDefinition, ref this.pdc.reportHeader, this.pdc.ReportTitle);
     frmTmp.ShowDialog();
     frmTmp = null;
 }