QUOTE(NickCantCodeVB @ 22 Apr, 2008 - 08:10 PM)

Hi-Lo guessing game

^
Label 4 would either say "Too High" "Too Low" or "Correct"
im lost it says post your code but I don't have one to post I need help to code either of the two or a start or something
Whoa man, that should have gone in a new post (actually, did you say one or the other?). However though, you're new, so I'll personally forgive you.
That post your code bit is where applicable. Obviously, for my last thread, I have no code to post, so that wasn't applicable!
OK, I'll talk about this one:
The program is going to pick a number between 0 and 100. For this purpose, there is a code snippet you can insert. (If you don't know how to insert a code snippet, right click where you want it, it's under Math).
Now, that's solved. Next part, you need to accept the user's input and determine whether it's higher, lower or the same, using the operators <>= (not in that order).
That's all you need to do, just remember to handle errors: the user might try typing in the number as a word for example, which could throw exceptions. Always setup procedures to catch potential errors: never fully trust the client/user.
That should help you.