Green Screen Scraping

  • Thread starter Thread starter Andre Uys
  • Start date Start date
A

Andre Uys

I need to build a quick temporary solution until our IT group can provide a
better solution.

Running WRQ Reflections for IBM 3270 emulation.

I need to scrape data from one screen that lists a bunch of jobs. Once
scraped, I want to add this to an access table. For each of these
records/jobs, I now want to send some keys back to the emulator in order to
get additional data for each record.

From many threads that I have read, most people do not recommend using
"SendKeys", but I don't have an option at this time, I must do something....

If you know of any better way to achieve this, please advise. If you good
resourced for sendkeys, thanks.
Andre
 
A lot of people preach against SendKeys because it's usually seen in sloppy
coding, or in situations where other means can be utilized. If SendKeys
works in your particular situation, then, by all means, use it for your
"quick fix."

Dev Ashish wrote an interesting piece on the subject and includes code to
utilize a "safer" SendKeys method:
http://www.mvps.org/access/api/api0046.htm

--

Regards,

John Boatner
MCSD, MCDBA, MCSE, MCSA, MCDST
J2 Technologies, Inc.
http://www.j2tech.com
 
The usual objection to SendKeys is that it's the programming equivalent to
playing darts with your eyes closed, not that it's sloppy programming.


--
Terry Kreft
MVP Microsoft Access


"John Boatner, MCSD, MCDBA, MCSE, MCSA, MCDST"
 
Back
Top