Example #1
0
 public static frmAboutAuthor GetInstance()
 {
     if(instance==null)
     {
         instance=new frmAboutAuthor();
     }
     return instance;
 }
Example #2
0
 private void tlsMnuNtfyAuthor_Click(object sender, EventArgs e)
 {
     frmMe = frmAboutAuthor.GetInstance();
     frmMe.ShowDialog();
 }