Hello. I created a script to logon to selected library web pages. I am using open object Rexx to input the userid into the userid field. The script works fine, however the web page is changing the userid to something different. Example, I am passing '410000509720' as the userid but 1978616600 is showing up in the field on the webpage.
If I put in a character like a dollar sign preceeding the id, the field shows $410000509720.
I can then delete the dollar sign and enter the account.
I can also put 410000509720 into my clipboard and paste it in. My question is why is the number being scrambled?
This happens with several sites using different ids. All the ids are numeric. One of the sites worked when I split up the id ,EX: 4100 0050 9720'
but some sites don't recognize the split. What am I not seeing?
BTW anything over 9 digits long appears to be scrambled if I enter 410000509 that number will show up correctly on the web page.
Thanks in advance.
my relevant code
NAM='410000509720'
myIE = .OleObject~new("InternetExplorer.Application","WITHEVENTS")
myIE~document~getElementById("textboxBarcodeUsername")~Value=NAM