Search results

  1. E

    Subform Locking

    I realize this post is from some time ago - but I was having the same problem and found this resolve: Private Sub CmdAllowEdit_Click() Me.AllowEdits = True Dim ctl As Control For Each ctl In Me.Controls If ctl.ControlType = acSubform Then ctl.Form.AllowAdditions = True...
  2. E

    Database as stand alone

    I appreciate your comments on Access – I’m glad to hear someone stand behind Access databases. I have always been completely satisfied with the performance and function of Access databases, although those I’ve created have been relatively small and used in one location. My only concern with...
  3. E

    Database as stand alone

    Oh sorry, some of the discussion was way beyond what I am familiar with... but several did mention creating the front end with VB and manage the backend/table with access.
  4. E

    Database as stand alone

    **The FrontEnd or simulating a backend with Collections and/or the Dictionary Object?** Sorry, not following you with this question. If this refers to my using a "front end/back end" - I used the database splitter to create a front end and back end. The front end is installed on all volunteer...
  5. E

    Database as stand alone

    Looking for some advice on Access and VB. I have been working with a local non-profit affiliate on the development of a database to automate one of the clinical programs. We finally have a finished product – using a front end/back end – with multiple users entering simultaneously. We have...
  6. E

    Phone Default Value

    dan-cat Thank you so much - I'm somewhat a newbie and mostly learned from trial and error when it comes to databases - this one is for volunteers to use so I want it to be as user friendly as possible. This forum has been an incredible help with solving some prior issues. I just couldn't get...
  7. E

    Phone Default Value

    I have been pulling my hair out with this one. I have three phone number fields - home, work, and cellular. My goal is to accommodate the user when entering the phone, but also to allow for exceptions. I have set up the three phone fields with: input masks: "("000")"000\-0000 default value...
  8. E

    Shell command with variables

    I like experimenting with VBA in Access2000, but I'm still mind boggled by quite a bit of it all. I posted a question regarding runapp for opening an application and showing contracts that have been scanned in. Mike G showed me the shell command. That works great, but I'm having a hard time...
  9. E

    RunApp

    I created a button on a form to run an application - linking customer information on the database to an image (scanned contract) I can open the image program but now I want to open to a specific page. I found sendkey statment but not quite what I need. Any help?
Back
Top Bottom