Exemple #1
0
 /// <summary>
 /// Creates a new frmSuche and starts a new 
 /// search for private contacts.
 /// </summary>
 private void SearchPrivat()
 {
     frmSuche m_objSuche = new frmSuche(m_DS, tstxtSuchePrivat.Text, m_objCao, m_objSugar, this, m_BS_CaoSearchContacts, m_BS_SugarSearchContacts);
     m_objSuche.Privat = true;
     m_objSuche.ShowDialog();
 }
Exemple #2
0
 /// <summary>
 /// Creates a new Search for a Company and displays frmSearch.
 /// </summary>
 private void SearchFirma()
 {
     frmSuche m_objSuche = new frmSuche(m_DS, tstxtSucheFirma.Text, m_objCao, m_objSugar, this, m_BS_CaoSearchFirma, m_BS_SugarSearchFirma);
     m_objSuche.Privat = false;
     m_objSuche.ShowDialog();
 }