To display a messagebox i used the below shown code
[DllImport("user 32.dll",Entrypo int="Messagebox ")]
public static extern int MessageBox(int hwnd,string message,string caption,uint uitype)
then when I use the above mentioned messagebox in order to get the exception from the sql statements it shows a error message that overloading is not possible what has to be done to it?
[DllImport("user 32.dll",Entrypo int="Messagebox ")]
public static extern int MessageBox(int hwnd,string message,string caption,uint uitype)
then when I use the above mentioned messagebox in order to get the exception from the sql statements it shows a error message that overloading is not possible what has to be done to it?
Comment