T
Tom
Is it possible to do something like this:
public class CommentDlg : System.Windows.Forms.Form
{
[...]
public CommentDlg()
{
InitializeComponent();
}
public CommentDlg(string comment)
{
CommentDlg(); // <<<--- this generates a compile error
Comment = comment;
}
[...]
}
public class CommentDlg : System.Windows.Forms.Form
{
[...]
public CommentDlg()
{
InitializeComponent();
}
public CommentDlg(string comment)
{
CommentDlg(); // <<<--- this generates a compile error
Comment = comment;
}
[...]
}