Results 1 to 2 of 2

Thread: Accessing third party applications????

  1. #1

    Thread Starter
    New Member
    Join Date
    Sep 2000
    Location
    Netherlands
    Posts
    10

    Question

    LS

    Is it possible to find out in what way a third party application is processing its data
    for instance:
    It uses a database to handle name, adress, zip, etc. and I want my app to use the same
    information in that database and add extra info to it.
    Now I can't access it directly, so is it possible to access it "trough" this third party app
    or is there an other way to access this database?

    - D -

  2. #2
    Guest
    If the database is a commercial one (eg. Access, SQL Server etc.) and is not encrypted, then you're in like Flynn - just talk to it the normal way you do with databases.

    If it's encrypted, or is a proprietray format, then you have a copuple of choices.

    You can try to hack the database files, which is often easy at the start, but can do major damage if it has indexing and triggers set up;

    You can use send keys to talk with the application (which is really, really ugly, but does work

    You can hook the widnwos on the app and talk to them using the VBThunder classes

    Or, ideally, if the application has an external object model like Word or Access, then you can hook inot the and talk to the application that way.

    any way you go, I think you might have difficulties. Companies don't like making their applications externally accessable, often for good reasons. Trial and error is the only way.

    - gaffa

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width