Buttonclick is not working VB.NET -


can me this, code doesn't have error when click button go previous group box doesn't work :( idk why can me guys figure out?

the app has login form when login directs form can choose categories if select category example chose gadgets redirects me gadgets groupbox if try go doesn't go in categories page

the button2.click, button6.click , button3.click buttons

here's code

public class form3  private sub picturebox2_click(sender object, e eventargs) handles picturebox2.click     groupbox2.show() end sub  private sub button1_click(sender object, e eventargs) handles button1.click     dim sbutton dialogresult     sbutton = messagebox.show("do want logout now?", "logging out", messageboxbuttons.yesno, messageboxicon.question)     if sbutton = dialogresult.yes         form1.show()         me.hide()     end if end sub  private sub button2_click(sender object, e eventargs) handles button2.click     groupbox1.show() end sub  private sub linklabel1_linkclicked(sender object, e linklabellinkclickedeventargs) handles linklabel1.linkclicked     groupbox3.show() end sub  private sub linklabel2_linkclicked(sender object, e linklabellinkclickedeventargs) handles linklabel2.linkclicked     groupbox4.show() end sub  private sub button4_click(sender object, e eventargs) handles button4.click     msgbox("message sent!", msgboxstyle.information)     textbox1.clear() end sub  private sub button3_click(sender object, e eventargs) handles button3.click     groupbox2.show()  end sub  private sub button5_click(sender object, e eventargs) handles button5.click     msgbox("message sent!", msgboxstyle.information)     textbox2.clear() end sub  private sub button6_click(sender object, e eventargs) handles button6.click     groupbox2.show()     groupbox3.hide() end sub  private sub form3_load(sender object, e eventargs) handles mybase.load     groupbox2.hide()     groupbox3.hide()     groupbox4.hide()  end sub 

end class

umm did type or generate ui? shouldn't button_onclick not button_click?


Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -