Consulting

Results 1 to 8 of 8

Thread: putting Access XP 2003 database on the web

  1. #1
    VBAX Newbie
    Joined
    Jul 2005
    Posts
    4
    Location

    putting Access XP 2003 database on the web

    I created a database with 26 tables of varying lengths about 18 months ago. I wrote VBA code to show forms and allow users to query the different tables using buttons which brought up the various tables and the "Find" (binoculars) symbol to help these older users find their data. Now, they would like to have the database online. Is there a way to do this via some scripting language and some examples which might be useful. I've looked at various code examples but don't know if they woud really work for what I have. Also, they want to do some sort of universal search across the 26 tables. I don't think this is do-able as the lengths of the individual tables varies. I've tried joins and links but they really don't seem to work well for this...only partial fields seems to appear. Would I have to build new tables (26 of them) and re-input the data into identical tables to make this work? Thanks for any help...

    Sherry

  2. #2
    VBAX Newbie
    Joined
    Jul 2005
    Posts
    4
    Location
    Quote Originally Posted by sherry
    I created a database with 26 tables of varying lengths about 18 months ago. I wrote VBA code to show forms and allow users to query the different tables using buttons which brought up the various tables and the "Find" (binoculars) symbol to help these older users find their data. Now, they would like to have the database online. Is there a way to do this via some scripting language and some examples which might be useful. I've looked at various code examples but don't know if they woud really work for what I have. Also, they want to do some sort of universal search across the 26 tables. I don't think this is do-able as the lengths of the individual tables varies. I've tried joins and links but they really don't seem to work well for this...only partial fields seems to appear. Would I have to build new tables (26 of them) and re-input the data into identical tables to make this work? Thanks for any help...

    Sherry

  3. #3
    Administrator
    VP-Knowledge Base
    VBAX Guru MOS MASTER's Avatar
    Joined
    Apr 2005
    Location
    Breda, The Netherlands
    Posts
    3,281
    Location
    Hi & Welcome to VBAX!

    Sherry,

    You've put your question in the pay-for-answer forum so I moved your question to the appropriate forum.
    _________
    Groetjes,

    Joost Verdaasdonk
    M.O.S. Master

    Mark your thread solved, when it has been, by hitting the Thread Tools dropdown at the top of the thread.
    (I don't answer questions asked through E-mail or PM's)

  4. #4
    VBAX Expert xCav8r's Avatar
    Joined
    May 2005
    Location
    Minneapolis, MN, USA
    Posts
    912
    Location


    Sherry, there are lots of ways you could approach this. If you already know VBA and HTML, then VBS (for .asp pages) is a snap. Alternatively, have you explored creating data access pages to see if those meet your needs?

    And for the grand daddy search, why can't you search each table individually in VBA?

  5. #5
    VBAX Newbie
    Joined
    Jul 2005
    Posts
    4
    Location
    Thanks so much for the thoughts and suggestions. I'll work with some of them tonight. It's great to know this site is supporting us newbies especially in our projects. Thanks again.


    Sherry

  6. #6
    VBAX Expert xCav8r's Avatar
    Joined
    May 2005
    Location
    Minneapolis, MN, USA
    Posts
    912
    Location
    Sherry, how's it going?

  7. #7
    VBAX Newbie
    Joined
    Jul 2005
    Posts
    4
    Location
    Better I think. I read some more in my VBA/ACCESS manuals. Decided I couldn't do a simple Find command/toolbar sort of thing to search the tables for what they want, but will have to come up with something programmatically moving the text string that the user supplies into unbound controls and take it from there to search the different tables. I haven't had time to code for one of the tables to try it out yet as work has been extremely busy. Thanks again for inquiring.



    Sherry


  8. #8
    VBAX Expert xCav8r's Avatar
    Joined
    May 2005
    Location
    Minneapolis, MN, USA
    Posts
    912
    Location
    Sherry, use the AllTables collection to loop through each of your tables, and use ADO or DAO to search through each of them individually for the desired value.

Posting Permissions

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