Mumms Posted July 3, 2009 Posted July 3, 2009 I have text written in a message box, but i want to add my varible to display it as well. This is what i want it to say: Your grade is: $grade
Mumms Posted July 3, 2009 Author Posted July 3, 2009 Alright, thanks. One more question, is it possible to ask for a key in input, and then set a varible for that key?
Valuater Posted July 3, 2009 Posted July 3, 2009 ??? ;Places the input box in the top left corner displaying the characters as they ;are typed. $answer = InputBox("Question", "Where were you born?", "Planet Earth", "", _ -1, -1, 0, 0) ;Asks the user to enter a password. Don't forget to validate it! $passwd = InputBox("Security Check", "Enter your password.", "", "*") ;Asks the user to enter a 1 or 2 character response. The M in the password ;field indicates that blank string are not accepted and the 2 indicates that the ;responce will be at most 2 characters long. $value = InputBox("Testing", "Enter the 1 or 2 character code.", "", " M2") 8)
Mumms Posted July 3, 2009 Author Posted July 3, 2009 I mean for a hot key.... Sorry, should have been more clear.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now