Page 1 of 1

Pasting some fields to web table using Clipboard help needed

Posted: Sun Dec 25, 2016 7:37 pm
by Horizon
Hi,

I have some fields in our Fw application and I need to paste these fields to web table using clipboard.

When I try to paste field by field, there is no problem.

but there are several fields in web page and I want to paste them just one paste action.

I have tried TAB to move to next web page table field but I could not.

Code: Select all

DEFINE CLIPBOARD oClp OF oApp:oDlg
    cText := "Field 1"+CHR(9)+"Field 2"+CHR(9)+"Field 3"
    oClp:SetText(cText)
    oClp:End()
I use this page to test : http://html.com/forms/usability-accessibility/

Any idea?

Thanks in advance.

Re: Pasting some fields to web table using Clipboard help needed

Posted: Mon Dec 26, 2016 11:18 am
by Antonio Linares
It seems as there is no way to do it using standard paste

and it is not easy to google info about it. I have been trying it for a while without success

Re: Pasting some fields to web table using Clipboard help needed

Posted: Tue Dec 27, 2016 5:37 am
by anserkk
Horizon wrote: Any idea?
You may have to use CreateObject("InternetExplorer.Application"), and identify the form fields in the web page and fill its contents programmatically.