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)