QB64.org Forum

Active Forums => QB64 Discussion => Topic started by: MLambert on July 12, 2018, 10:23:21 am

Title: Send Control Keys to a Web Page
Post 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

Title: Re: Send Control Keys to a Web Page
Post by: FellippeHeitor on July 12, 2018, 10:34:37 am
Try using _screenprint (http://www.qb64.org/wiki/index.php?title=SCREENPRINT) and sending chr$(1) then chr$(3) - not certain to work though.
Title: Re: Send Control Keys to a Web Page
Post by: Cobalt on July 12, 2018, 09:55:08 pm
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.
Title: Re: Send Control Keys to a Web Page
Post by: MLambert on July 13, 2018, 01:48:29 am
Thank you everyone for your help. All works fine.

Regards,

Mike