How to jump from one field to the next on a web page from a VB String
Jerry Merrill
1
Reputation point
I have ten fields on a third party web page that I want to fill using a String placed on the clipboard.
I tried using vbTab to tab from one field to the next, but when I pasted the long string into the field,
everything was output into that one field. What would I use to jump to the next field instead of vbTab?
partOne = fullTNtext + vbTab + "Family History Library" + vbTab + usrName + vbTab + "MS"
partTwo = vbTab + dateTime + vbTab + vbTab + dateTime + vbTab + vbTab + imageChr
partTree = vbTab + usrName + vbTab + dateTime + vbTab + vbTab + dateTime
clipText = partOne + partTwo + partTree
Clipboard.SetText(clipText)
Developer technologies | VB
Developer technologies | VB
An object-oriented programming language developed by Microsoft that can be used in .NET.
Sign in to answer