QB64.org Forum
Active Forums => QB64 Discussion => Topic started by: MLambert on July 12, 2018, 10:23:21 am
-
Hi,
I have opened a web page using QB64 .. now I want to send Control A (Select all) then Control C ( copy all).
How do I send these control key to the web page ?
Regards,
Mike
-
Try using _screenprint (http://www.qb64.org/wiki/index.php?title=SCREENPRINT) and sending chr$(1) then chr$(3) - not certain to work though.
-
he could send ALT then "E" then "A" to select all
then send ALT then "E" then "C" to copy.
cant remember the key code for ALT right off my head.
and thats for Windows with FireFox browser.
-
Thank you everyone for your help. All works fine.
Regards,
Mike