Hi everybody,
I'm programming an app in which I launch web pages and browse them on a VFP 9.0 form usign a "_web" (VFP distribution) class object.
Now, due to my requirements, I need to COPY certain text (phone numbers) from the page I'm browsing and PASTE it in a DBF field (in the case you have not guessed, I need to associate each URL to a phone number).
In order to increase productivity (# of phone numbers captured) I'd like to automate copying & pasting this text through a shortcut by capturing an event (ON KEY LABEL ALT+V...) for later COPYing and "pasting" the text that I need by means of _cliptext:
KEYBOARD '{CTRL+c}'
phoneNumber = _cliptext
My problem is that apparently, KEYBOARD '{CTRL+c}' is not working properly programatically on the _web object on the page I'm browsing, although if I do it interactively it works fine.
Any sugestion?
I'm programming an app in which I launch web pages and browse them on a VFP 9.0 form usign a "_web" (VFP distribution) class object.
Now, due to my requirements, I need to COPY certain text (phone numbers) from the page I'm browsing and PASTE it in a DBF field (in the case you have not guessed, I need to associate each URL to a phone number).
In order to increase productivity (# of phone numbers captured) I'd like to automate copying & pasting this text through a shortcut by capturing an event (ON KEY LABEL ALT+V...) for later COPYing and "pasting" the text that I need by means of _cliptext:
KEYBOARD '{CTRL+c}'
phoneNumber = _cliptext
My problem is that apparently, KEYBOARD '{CTRL+c}' is not working properly programatically on the _web object on the page I'm browsing, although if I do it interactively it works fine.
Any sugestion?