How to jump from one field to the next on a web page from a VB String

Jerry Merrill 1 Reputation point
2021-08-05T01:37:11.803+00:00

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
{count} votes

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.