Search results

  1. M

    Simple question on doing queries

    You can make a master query that gets all the information for all the reports that you need. And in your code you do seperate queries that only get the data you need. Here is an example of what I mean from a program I am developing. I don't get info from a query but you can. Dim db...
  2. M

    Simple question on doing queries

    What do you mean?
  3. M

    t'Internet

    no prob
  4. M

    t'Internet

    If they want the user to input data in the database through the web use ASP. Make sure there host is able to handle Access database and supply you with a DSN. Some web hosts allow asp but the database format they allow is SQL. If it does set up the website.
  5. M

    Simple question on doing queries

    You could do it all in one query and set conditions on who to select. For example have a form with 2 textboxes and a check box. If they want 1 or 2 vendors get them to type in their ID or name and run a query in your code which just selects the records where the ID's match and the checkbox...
  6. M

    db for Infomercials

    Sounds like a simple ordering system. Shouldn't be hard to do. I know A2K2 offers a template for order entry.
  7. M

    Date manipulation trick required.

    Wouldn't it be easier to make the format consistant over your entire program. It's a good programming practice *EDIT* Nevermind. It's early and my brain farted:)
  8. M

    Online data-manip w/ error checking?

    By online I'm guessing you mean through a web browser and not an applicaiton. Just wirte up an asp file that looks similar to your form. Error checking is pretty much the same.
  9. M

    Help My Database has stopped working!!

    Then I'm stumped. Had that error awhile back and that is how I got rid of it. Sorry I couldn't help you out further.
  10. M

    Stay on current record

    It was in my mind to begin with just had to get it to work.
  11. M

    Help My Database has stopped working!!

    Try checking Microsoft DAO 3.6 Object Library
  12. M

    Help My Database has stopped working!!

    Reference are links to dll's In the code editor select Tools->References since it is an ole error make sure that there is a check beside the OLE Automation reference.
  13. M

    Stay on current record

    Mile I posted a new topic with disabling the shift key
  14. M

    Help My Database has stopped working!!

    Could be that a Reference has been unlinked. Make sure your references are what they are supposed to be.
  15. M

    Disable Shift Key

    Because this was brought up in my previous post here is the solution to disable the user from using the shift key to access the database window during startup. 1. Create a new module and past this code inside it: '---------------------------------------------------------------------' ' Module...
  16. M

    Stay on current record

    Actually just worked out a way around. In my startup options uncheck everything and select which form I want to start. This gets rid of the right clicking. Also I created 2 macros t display blank menus in replace of the Access menus. Thus not allowing the user to select Record->Remove Filter.
  17. M

    Stay on current record

    forgot one thing aswell. When the user maintenance screen is displayed therre are no passwords showing. They can change their password only if the password they enter in the old password field matches the one in the db will it allow it.
  18. M

    Stay on current record

    Thanx for the tip but since this system involves passwords when i am finished it it will be an mde file that doesn't show the database window and also the menu won't be shown. This should take out the ability to edit the filters. Let me know.
  19. M

    Stay on current record

    Thanx anyways guys. But they way I did was used the BuildCriteria Function to create a filter that matched with the id of the record and turned off athe AllowAdditions property. cheers
  20. M

    Stay on current record

    I have a user maintenance screen that displays all their information and allows them to change their passwords. How can I get it so they stay on there record only and not go into other records. What's happening now is that when they tab through all the fields it goes to the next record. How...
Back
Top Bottom