Notification or Error Message not Understood

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When running my program, I get the following message that I don't
understand...the program seems to run ok but I would like to know what I'm
doing wrong to get this message...any help would be appreciated.

"A first chance exception of type 'System.NullReferenceException' occurred
in MultiGridControl.dll""
 
Dennis,

Hard to say without code, mostly is it because you forget to create the
object and are just declaring it.

dim object as Whatever instead of
dim object as New Whatever.

Cor
 
Thanks...I wish it would tell me which line is giving the error. Doesn't
happen during build, just when starting to execute
 
Back
Top