Pasting some fields to web table using Clipboard help needed

Post Reply
Horizon
Posts: 997
Joined: Fri May 23, 2008 1:33 pm

Pasting some fields to web table using Clipboard help needed

Post 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.
Regards,

Hakan ONEMLI

Harbour & VS 2019 & FWH 20.12
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

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

Post 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
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
anserkk
Posts: 1280
Joined: Fri Jun 13, 2008 11:04 am
Location: Kochi, India

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

Post 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.
Post Reply