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 Expand view
- 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.