An unhandled exception on --Application.Run(New Form1)

yousuf42

Well-known member
Joined
Feb 12, 2006
Messages
101
Programming Experience
1-3
Dear All,

When I run Application I Have following error

An unhandled exception of type 'System.NullReferenceException' occurred in system.windows.forms.dll
Additional information: Object reference not set to an instance of an object.

Sample Application is attached here

Can any one hep me please!!!

Thanks in advance
 

Attachments

  • TestPrj2.zip
    60.1 KB · Views: 18
In DataGridButtonColumn class constructor you missed the namespace:
VB.NET:
... GetManifestResourceStream(Me.GetType.Namespace & ".fullbuttonface.bmp")
 
'same with [SIZE=2]fullbuttonfacepressed[/SIZE]
 
Back
Top