aaaaaaaa's in my input (console) code
Posted: Wed Aug 17, 2005 10:27 pm
Here is the part of my code, where I'm supposed to input some numbers for my program:
When you press space and than backspace, you'll notice that letters aaaaaa are starting to show.
Can that be avoided ? Did I make some mistake in this code ?
Code: Select all
If OpenConsole()
startinputt:
ClearConsole()
Print("How many : ")
ukupno = Int(Val(Input()))
PrintN("")
Print("How much: ")
brfav = Int(Val(Input()))
If brfav > ukupno : Goto startinputt : EndIf
PrintN("")
CloseConsole()
EndIf
Can that be avoided ? Did I make some mistake in this code ?