Recent content by Papa_Bear1

  1. Papa_Bear1

    A Quick Question (...but are they ever 'quick'?) - Can we get to the Default Form via VBA in Access?

    I didn't know the order --- probably because I tended to use one OR the other. Very good to know that.
  2. Papa_Bear1

    A Quick Question (...but are they ever 'quick'?) - Can we get to the Default Form via VBA in Access?

    Funny you should pick the "StartUpShowDBWindow" example, as I'm thinking of adding that one to my list since I have that checked once in a while.
  3. Papa_Bear1

    A Quick Question (...but are they ever 'quick'?) - Can we get to the Default Form via VBA in Access?

    @isladogs - I have a tiny follow-up question, if that is OK. On the db.CreateProperty line, there is the "dbText" argument. Intellisense is telling me that it is the "Type". I'm thinking it must mean the type of the property name, not the type of the property itself (as that appears to be an...
  4. Papa_Bear1

    A Quick Question (...but are they ever 'quick'?) - Can we get to the Default Form via VBA in Access?

    Wow - Awesome. I think NOW I can see so much more of the reasoning for what seemed surprising to me (in my little Access world -- ha...) Very cool - and thank you very much.
  5. Papa_Bear1

    A Quick Question (...but are they ever 'quick'?) - Can we get to the Default Form via VBA in Access?

    I'm not sure if it affects this - but we USED to be able to manage trusted locations... but no longer... Maybe the AutoExec macro will still work regardless. (I seem to recall opening one of my old Access files recently where I had included an AutoExec macro and it tried to run it. I don't...
  6. Papa_Bear1

    A Quick Question (...but are they ever 'quick'?) - Can we get to the Default Form via VBA in Access?

    This is one of those things that I just sort of muddle through, but also have wondered why it feels inconsistent. Is there an obvious answer to: Why is it that you need not use myDB.Properties("Name") but you must use .Properties in the other case?
  7. Papa_Bear1

    A Quick Question (...but are they ever 'quick'?) - Can we get to the Default Form via VBA in Access?

    Hmmmmmmm. I did not know this. This sounds like one of those things that I may have heard about once, it sounded intriguing, but then I never tried it out - and then forgot it. Interesting though.
  8. Papa_Bear1

    A Quick Question (...but are they ever 'quick'?) - Can we get to the Default Form via VBA in Access?

    Indeed. And I have used that approach before, but I vaguely recall running into problems at some point in our environment as the security posture has continued to tighten. I recall running into some friction with use of the AutoExec macro due to IT policy changes. I'll look back into that to see...
  9. Papa_Bear1

    A Quick Question (...but are they ever 'quick'?) - Can we get to the Default Form via VBA in Access?

    OK - Interesting. I'm not certain if I was doing that searching in a DB that had a startup form already set - but I thought it did. (It may be more likely I simply missed it.) But - as long as I can find one that IS there via VBA, and can set it, if needed, then that works out great. It is just...
  10. Papa_Bear1

    A Quick Question (...but are they ever 'quick'?) - Can we get to the Default Form via VBA in Access?

    Right - "Default" is not enough... Sorry 'bout that... So I'm talking about this:
  11. Papa_Bear1

    A Quick Question (...but are they ever 'quick'?) - Can we get to the Default Form via VBA in Access?

    OK - wild. I thought I looked through every property of the database object. I probably looked for "DefaultForm" - so missed the "StartupForm". I'll take a look at this --- thanks!
  12. Papa_Bear1

    A Quick Question (...but are they ever 'quick'?) - Can we get to the Default Form via VBA in Access?

    Correct... in Options where you tell it what form to start with. (I figured this meant it would be in Application.SetOptions - but I've had trouble finding a solid list of exactly what arguments are allowed with that.
  13. Papa_Bear1

    A Quick Question (...but are they ever 'quick'?) - Can we get to the Default Form via VBA in Access?

    I would like to be able to read/write the default form that is set in MS Access. I've tried looking in the usual places like CurrentdB., Application.SetOption, CurrentProject., but can't seem to find it anywhere. I've even tried peeking into the MSys tables, and it seems to be well hidden. Is...
  14. Papa_Bear1

    Trying to do something really similar to an old post, but can't make it work

    Excellent! Yes - thank you ---- will do!
  15. Papa_Bear1

    Trying to do something really similar to an old post, but can't make it work

    OK - So, it looks like it was nothing more than me accidentally closing out the relation too early by appending it before visiting the next set of fields. Due to this, it was no longer available to add more fields to. Ugh. I would add though, that in MS parlance, the "relation" is a table...
Back
Top Bottom