Beispiel #1
0
 internal void frmQueryForm_ReturnInfo(com.digitalwave.iCare.ValueObject.clsMS_MedicintLeastElement_VO MS_VO)
 {
     if (MS_VO == null)
     {
         return;
     }
     m_objViewer.m_txtMedName.Tag  = MS_VO.m_strMedicineID;
     m_objViewer.m_txtMedName.Text = MS_VO.m_strMedicineName;
     m_objViewer.m_txtBillId.Focus();
 }
Beispiel #2
0
        internal void frmQueryForm_ReturnInfo(com.digitalwave.iCare.ValueObject.clsMS_MedicintLeastElement_VO MS_VO)
        {
            if (MS_VO == null)
            {
                return;
            }

            if (m_objViewer.m_rbtSingle.Checked)
            {
                m_objViewer.m_txtMedicine.Text = MS_VO.m_strMedicineName;
            }
            else
            {
                m_objViewer.m_txtMedicine.Text = MS_VO.m_strMedicineCode;
            }
            m_objViewer.m_txtMedicine.Tag = MS_VO.m_strMedicineID;
        }