![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I have a table with firstname, lastname, and birthdate and about 20 records. I need to visit a website to look up info on each of these people. I'm looking for a way to automate the process (at least a little bit). The website can only look up people one at a time. The website has fields for lastname, firstname, middlename, and birthdate. The middle name is optional. On the website, I can navigate between fields with the tab key. I'm looking for a method to read one record from my table, and possibly use the clipboard to store lastname & vbTab & firstname & vbTab & vbTab & birthdate. Then I can switch to the website and ctrl+v to past the data into the fields. I tried a form with an unbound text control and built the data string into the text control and loaded it into the clipboard. But when I switch to the website & paste, it loads the entire string into the 1st field. Has anyone got a better technique? TIA Fred |
#3
| |||
| |||
|
|
zuckerm... (AT) gmail (DOT) com> wrote in message news:d187fe66-230f-410d-b52a-3e601e5f5fe9 (AT) s6g2000prg (DOT) googlegroups.com... I have a table with firstname, lastname, and birthdate and about 20 records. I need to visit a website to look up info on each of these people. I'm looking for a way to automate the process (at least a little bit). The website can only look up people one at a time. The website has fields for lastname, firstname, middlename, and birthdate. The middle name is optional. On the website, I can navigate between fields with the tab key. I'm looking for a method to read one record from my table, and possibly use the clipboard to store lastname & vbTab & firstname & vbTab & vbTab & birthdate. Then I can switch to the website and ctrl+v to past the data into the fields. I tried a form with an unbound text control and built the data string into the text control and loaded it into the clipboard. But when I switch to the website & paste, it loads the entire string into the 1st field. Has anyone got a better technique? TIA Fred Maybe you can bypass the input form. After submitting the form, take a look at the address bar for the new page. If it is like Google map, it will bea long string. Try decoding this string to see it you can submit it directly to the browser.- Hide quoted text - - Show quoted text - |
#4
| |||
| |||
|
|
zuckerm... (AT) gmail (DOT) com> wrote in message news:d187fe66-230f-410d-b52a-3e601e5f5fe9 (AT) s6g2000prg (DOT) googlegroups.com... I have a table with firstname, lastname, and birthdate and about 20 records. I need to visit a website to look up info on each of these people. I'm looking for a way to automate the process (at least a little bit). The website can only look up people one at a time. The website has fields for lastname, firstname, middlename, and birthdate. The middle name is optional. On the website, I can navigate between fields with the tab key. I'm looking for a method to read one record from my table, and possibly use the clipboard to store lastname & vbTab & firstname & vbTab & vbTab & birthdate. Then I can switch to the website and ctrl+v to past the data into the fields. I tried a form with an unbound text control and built the data string into the text control and loaded it into the clipboard. But when I switch to the website & paste, it loads the entire string into the 1st field. Has anyone got a better technique? TIA Fred Maybe you can bypass the input form. After submitting the form, take a look at the address bar for the new page. If it is like Google map, it will be a long string. Try decoding this string to see it you can submit it directly to the browser.- Hide quoted text - - Show quoted text - |
![]() |
| Thread Tools | |
| Display Modes | |
| |