Button Click issue

cherenee

Member
Joined
Apr 15, 2007
Messages
6
Programming Experience
Beginner
I am working on VB.net. The objective is to create a suduko type board with a check, quit, save, load and load new game buttons. We have been instructed to add two extra game boards that can be loaded with a click of the new game button. I am able to get the 1st of the new boards to load but not the second. If I rearrange the code and put board 3 ahead of board 2 then 2 won't load. What am I doing wrong?:confused:
VB.NET:
Private Sub gameboard3_click(ByVal sender.............) Handles Button21.click
 
Button1.text = "1"
Button2.text = "4"
Button3.text = ""
Button4.text = "2"
 
End Sub
 
Last edited by a moderator:
Button click events

I discovered the click event is set to load only my first new board. I need that one button, when clicked, each time to load the numbers for 2 different game boards. Is this possible?
 
Is might be able to help you, but you would need to post your complete code. Also, you could attach a zip file of your program. I use 2003, not 2005, so I would not be able to use your project, but someone else could. Also, I don't really understand the code exapample you gave. Care to explain how it has to do with your question?
 
Back
Top