Code: Select all
OpenConsole()
EnableGraphicalConsole(1)
ConsoleColor(15,1)
ClearConsole()
Print("Enter a limit for this search: ")
limit = Val(Input())
Print("you entered "+Str(limit))
Delay(1000)
CloseConsole()
End
Code: Select all
OpenConsole()
EnableGraphicalConsole(1)
ConsoleColor(15,1)
ClearConsole()
Print("Enter a limit for this search: ")
limit = Val(Input())
Print("you entered "+Str(limit))
Delay(1000)
CloseConsole()
End