thinBasic: Basic Programming Language Community Forum
>
thinBasic (the language)
>
thinBasic General
> Invisible Msgbox?
PDA
View Full Version :
Invisible Msgbox?
catventure
20-01-2006, 21:42
Hi,
Is there a way to use a simple OK msgbox but make it 'hidden'?
Regards,
catventure.
catventure
21-01-2006, 22:23
Hi,
I was just trying to find a really simple way of waiting for a <return> keypress in my program. The code below does it nicely :)
getasynckeystate(%vk_return)
do
if getasynckeystate(%vk_return) then
exit do
end if
loop
catventure