Exemplo n.º 1
0
 public void commentsButton_Click(object sender, EventArgs e, string ident)
 {
     try
     {
         CommentsForm comForm = new CommentsForm(ident);
         comForm.ShowDialog();
     } catch (Exception ex)
     {
         new Error(ex).ShowDialog();
     }
 }
Exemplo n.º 2
0
 private void commentsButton_Click(object sender, EventArgs e)
 {
     try
     {
         CommentsForm comForm = new CommentsForm(pl_hostnameTitle.Text);
         comForm.ShowDialog();
     } catch (Exception ex)
     {
         new Error(ex).ShowDialog();
     }
 }