ENTRY$
This command will return the string currently held by the windows system.
Return String=ENTRY$()
Return String=ENTRY$(Auto Backspace Mode)
Auto Backspace Mode
Integer
This value is an integer number such as 1.
Will return the string currently held by the windows system
This string is maintained by the windows message pump and ensures you do not miss characters typed at speed in your application. You can clear this string using the CLEAR ENTRY BUFFER command. The entry buffer command automatically handles the collection of text typed in by the end user. By proving the extra parameter in the command ENTRY$(1) the system will automatically delete characters if the backspace key is pressed.
clear entry buffer
do
cls
a$=entry$(1)
print "entry$(1) = "+a$
loop
INPUT Commands Menu
Index