예제 #1
0
파일: SellerForm.cs 프로젝트: CoolWirya/BS
 private void button2_Click(object sender, EventArgs e)
 {
     ClassLibrary.JFindPersonForm FindP = new ClassLibrary.JFindPersonForm();
     FindP.ShowDialog();
     if (FindP.SelectedPerson != null)
     {
         txtPerson.Text = FindP.SelectedPerson.Name;
         txtPerson.Tag  = FindP.SelectedPersonCode;
     }
 }
예제 #2
0
파일: DriverForm.cs 프로젝트: CoolWirya/BS
 private void button2_Click(object sender, EventArgs e)
 {
     ClassLibrary.JFindPersonForm FindP = new ClassLibrary.JFindPersonForm();
     FindP.ShowDialog();
     if (FindP.SelectedPerson != null)
     {
         JMessages.Message("شخصی پیدا نشد", "", JMessageType.Error);
     }
     else
     {
         txtOwner.Text = FindP.SelectedPerson.Name;
         txtOwner.Tag  = FindP.SelectedPersonCode;
     }
 }