I need help to program for â–º VISUAL BASIC â—„
Question:
You must create a Windows Forms application called "Random Project". Write an application that generates a random number. You need to ask the user to guess what it is. If the user's guess is higher than the random number, the program should display "Too high, try again." If the user's guess is lower than the random number, the program should display "Too low, try again." The application should continue to repeat until the user guesses the random number.
Random number generation code sample:
Dim ranGen as New Random
intNum = ranGen.Next(1, 100)