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