Hi Expert!
I am creating a log file for stored generated exception, so I have needed to get which form control are fire. Please help me for getting name of current windows form are open.
Thanks in advance!
Hi Expert!
I am creating a log file for stored generated exception, so I have needed to get which form control are fire. Please help me for getting name of current windows form are open.
Thanks in advance!
Hi Ben!
There are two way!
If you want to used as globle then try this way
string sFormName = this.FindForm().Name;
Another way is, if you get form name at same page then used this way, but above code are used both places
string SFormName = this.ActiveControl.FindForm().Name.ToString();