If I made something on Visual Basic, how would I give it to someone else on a different computer? Thanks :)
Printable View
If I made something on Visual Basic, how would I give it to someone else on a different computer? Thanks :)
Like, the source code or just the program? Also, what version of VB?
I'm on Visual Basic 2010 Express, but that doesn't matter now, I know how, thanks anyway :). But what is wrong now is this:
If Val(Label1.Text) = Val(TextBox1.Text) Then
Val(Label14.Text) = "Goal Reached!"
Says 'Expression is a value and therefore cannot be the target of an assignment.'
Val() returns a number from a string, do this:
Code:If Val(Label1.Text) = Val(TextBox1.Text) Then
Label14.Text = "Goal Reached!"