Ejemplo n.º 1
0
 public void Send(String _Recipient, String _Subject, String _Message, int _ParentID)
 {
     ComposeForm = new Compose(_Recipient, _Subject, _Message, _ParentID, this);
     ComposeForm.Show();
 }
Ejemplo n.º 2
0
 private void BtnWrite_Click(object sender, EventArgs e)
 {
     ComposeForm = new Compose(this);
     ComposeForm.Show();
 }
Ejemplo n.º 3
0
 //Calling window for replying
 //and forwarding message
 public void Reply(String _Recipient, int _ParentID)
 {
     ComposeForm = new Compose(_Recipient, _ParentID, this);
     ComposeForm.Show();
 }