Search results

  1. mistyinca1970

    AutoExec as vba instead?

    They are accdb files. Is it just a matter of changing the file extension?
  2. mistyinca1970

    AutoExec as vba instead?

    Well...I don't know what that is... This is the first time I'm distributing my work.
  3. mistyinca1970

    AutoExec as vba instead?

    Please jump in! (y)This is the route I would prefer to go. I have tried the following alternate sequence (this one does not use an autoexec), but even the form's on load event isn't working without content enabled. The most important being hiding the toolbar. But when I open it when content...
  4. mistyinca1970

    AutoExec as vba instead?

    Sorry I have been on vacation, but now back to business :cry:... I'm still having trouble with this one. I don't know how to create an "if" scenario that recognizes when content is not enabled. If you could set me in the right direction, that would be great. Thanks!
  5. mistyinca1970

    AutoExec as vba instead?

    There's a lot we can't do. We don't even have administrator access in our computers. This is a local government office, and all of our IT services are handled by another division.
  6. mistyinca1970

    AutoExec as vba instead?

    Finally got this, and it's error number 3044... So I was able to address the issue of not being connected to vpn, and the appropriate message box. The other error happening when content is not enabled I can't test until I'm back in the office. I think I probably made this remote computer a...
  7. mistyinca1970

    AutoExec as vba instead?

    I actually do already have the unbound form. It is frmOpen. Its a blank blue form so that the screen is aesthetically pleasing :) upon opening. The login screen just popup opens on top of that, and when it closes and the other form opens, it closes frmOpen. So I'm thinking then instead of the...
  8. mistyinca1970

    AutoExec as vba instead?

    Interesting...by this do you mean not pop up the login form, and instead have a login link that will pop up the login form..? I'm going to try tinkering with that immediate window. The first time someone downloads and opens the Front end file, I'm getting this and its not handling it based on...
  9. mistyinca1970

    Reaching Data Limit, Multiple Back Ends? Good Idea or Not?

    I know this is an old thread, but I have the same issue with reaching capacity for the back end. (Please tell me if your preference is that I create a new thread as some forums frown on bringing up same issues that have been discussed before.) The files being stored in mine are Contract pdfs and...
  10. mistyinca1970

    Solved Temp Vars and switching users

    Thank you! This works!
  11. mistyinca1970

    Solved Temp Vars and switching users

    Can I simply reuse my login form to switch users. My question is basically, if I assign a Temp Vars, does it replace any existing Temp vars, or is there another bit of code I'll need to use to clear the old Temp Vars first? Here is the code for my login form: Private Sub btnLogin_Click()...
  12. mistyinca1970

    AutoExec as vba instead?

    Tried as a module and it works; however, it is not recognizing the "Case 2950" because it is popping up the "Else" message. Here's the fn code (below are some screenshots): Function fnAutoExec() On Error GoTo AutoExec_Err DoCmd.OpenForm "frmLogin", acNormal, "", "", , acNormal Cleanup...
  13. mistyinca1970

    AutoExec as vba instead?

    OK, and then what about naming the module? I vaguely remember something about module and function not being the same name...
  14. mistyinca1970

    AutoExec as vba instead?

    I have an AutoExec macro that opens my login form. But I want to add some error handling because I forgot to log into our VPN this morning, and I got error 2950. So I want to have a message box deploy for that error. I used the convert feature, and it created it as a Function in a module. So...
  15. mistyinca1970

    Solved Multiple error handling on one button

    Thank you. This works!
  16. mistyinca1970

    Solved Multiple error handling on one button

    I have the following error handling added to a button, but I want to add another handling for another type of error. This one in particular is if the user fails to select a report from the list box prior to clicking the "Email Report" button. Private Sub btnEmailReport_Click() On Error GoTo...
  17. mistyinca1970

    Send contents of attachment field?

    It has to be a disk? Can't be an internet file location?
  18. mistyinca1970

    Send contents of attachment field?

    Is this possible? I have .pdf files in the attachment fields of records. Is it possible to send those in an email? I can't seem to find a way to do this using SendObject. Thank you,
  19. mistyinca1970

    Solved How to get rid of "Save to SharePoint Site" prompt?

    Thank you! This worked! (Just checking to see if everything works the same now)
  20. mistyinca1970

    Solved How to get rid of "Save to SharePoint Site" prompt?

    The database is saved here locally on my c: drive. What other work is there to do with the import? Relationships? Anything else? Thank you,
Back
Top Bottom