I have two text boxes that require user input now if a value of 0 is put into one box then the other is not needed what I would like to do is when a value greater than 0 is put into the first box the second will enable(I have the second unenabled at startup)do I need to declare the textbox input as a variable if so would this be the proper way
score1 = txt1.text
oh yes I forgot these inputs are only numbers (the first set to two decimal places the second whole numbers)
I have assured it is only numbers in these boxes by using
Select Case KeyAscii
Case 8, 46, 48 To 57
Case Else
KeyAscii = 0
oh yes just in case you didnt notice I am a complete novice
thanks
score1 = txt1.text
oh yes I forgot these inputs are only numbers (the first set to two decimal places the second whole numbers)
I have assured it is only numbers in these boxes by using
Select Case KeyAscii
Case 8, 46, 48 To 57
Case Else
KeyAscii = 0
oh yes just in case you didnt notice I am a complete novice
thanks