FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Pasting some fields to web table using Clipboard help needed
Posts: 1387
Joined: Fri May 23, 2008 01:33 PM
Pasting some fields to web table using Clipboard help needed
Posted: Sun Dec 25, 2016 07:37 PM
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 (fw): Select all Collapse
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 & MSVC 2022 & FWH 23.06
Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM
Re: Pasting some fields to web table using Clipboard help needed
Posted: Mon Dec 26, 2016 11:18 AM

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
Posts: 1335
Joined: Fri Jun 13, 2008 11:04 AM
Re: Pasting some fields to web table using Clipboard help needed
Posted: Tue Dec 27, 2016 05:37 AM
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.

Continue the discussion