I am very new and bad at programming and taking a vb.net class. I am trying to troubleshoot my code to see why it is not running properly. I found a thread in another forum that said I could not put multiple then statements in, that vb will only execute the first statement. This is the first time I had heard this, is it true. Below is an example of what I mean. Thanks in advance!
If slot1 = slot2 andalso slot1 = slot3 then
runningCredits = runningCredits + 50
me.textbox1.tex t = You hit the jackpot
end if
-Justin
If slot1 = slot2 andalso slot1 = slot3 then
runningCredits = runningCredits + 50
me.textbox1.tex t = You hit the jackpot
end if
-Justin
Comment