'VB.Net' Events Problem

bayonsr

New member
Joined
Apr 27, 2007
Messages
2
Location
Phnom Penh, Cambodia.
Programming Experience
Beginner
Dear Everyone,

Pls kindly to solve me some problems.

I code in btnAdd_Click event, but it doesn't execute. Why? I also insert Breakpoint at btnAdd_Click, but it still the same.

When I try to redesign the current form, it doesn't update too when I open it from mdiForm's event (frmTest.Show()). It just views but doesn't view what I redesigned.

Best Regards,

Visoth
 
thread moved to Windows Forms forum, please post in appropriate forum.

Maybe you lost the Handles clause? It should say something like this:
VB.NET:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) [COLOR=blue]Handles Button1.Click[/COLOR]
 
Back
Top