M
Matthew
VB.NET 2003
I created a new project, and placed one line on form load:
MsgBox("test")
I get this error:
An unhandled exception of type 'System.ArgumentException' occurred in
microsoft.visualbasic.dll
Additional information: Argument 'Title' cannot be converted to type
'String'.
If I change the line to this:
MsgBox("test", , "")
It works fine.
Ideas?
Matthew
I created a new project, and placed one line on form load:
MsgBox("test")
I get this error:
An unhandled exception of type 'System.ArgumentException' occurred in
microsoft.visualbasic.dll
Additional information: Argument 'Title' cannot be converted to type
'String'.
If I change the line to this:
MsgBox("test", , "")
It works fine.
Ideas?
Matthew