Search results

  1. JasonTFleishman

    'Command or action 'Paste' isn't available Now'

    My research and personal testing overcomes the error. Add a slight pause to your cause. The 'Sleep' function (or 'Sleep1000') that is now publicly available on the internet before the DoCmd.RunCommand acCmdCopy and/or DoCmd.RunCommand acCmdPaste. I "sleep" for 2 milliseconds, ie., Sleep1000 2...
  2. JasonTFleishman

    What is the difference between Macro and VBA code in MS Access, which one is preferred at which step

    In my experience, after 27 years of using macros, Microsoft fails to support them and errors in the database become unresolvable by either Compact and Repair or Vba Debug. The macros-related errors reveal themselves in a Vba-type catastrophic error 'return without gosub'. The errors also take...
  3. JasonTFleishman

    Using "Between" in VBA?

    I'm proud of myself. I tried your code, saw the error, fixed it, and didn't say anything. I'm not and low skilled as I thought.
  4. JasonTFleishman

    Using "Between" in VBA?

    Good suggestion. I'll add it to the bag of tricks.
  5. JasonTFleishman

    Using "Between" in VBA?

    how do I do that orange bar for pasting code?
  6. JasonTFleishman

    Using "Between" in VBA?

    What a great homework assignment. I'm not great yet, but am studying privately. I should have known I could write my own. I've got a few little public functions that help me process information. Michael Wolfe wrote a function for cascading combo boxes which inspires me. Thanks.
  7. JasonTFleishman

    Using "Between" in VBA?

    Thank you. I'm grateful.
  8. JasonTFleishman

    Using "Between" in VBA?

    Excellent! The back story is ... I've decided to change my Datebook TimeFrom control to string format instead of a DateTime format so that partial time entries are accepted, and the computer deduces what was intended. The new control accepts the following partial time entries: 9 08 14 7:3 1122...
  9. JasonTFleishman

    Using "Between" in VBA?

    Creative. Square pegs do fit in round holes after all.
  10. JasonTFleishman

    Using "Between" in VBA?

    Thanks for the research. Forcing the use of 'Between' in the VBA context, when it is meant to dwell only in Query-SQL-land, is a bad idea.
  11. JasonTFleishman

    Using "Between" in VBA?

    Yes, the post of, Minty, AWF VIP, worked well: "Case 7 to 11, 24". It's an honor to have your guidance. I have the ambition of being like all of you.
  12. JasonTFleishman

    Using "Between" in VBA?

    I've attempted to use > x and < y in a select statement and it isn't working? Suggestions? The code follows: Select Case IsNumeric(CCValue) Case Is = True Select Case CCValue Case Is = 7, 8, 9, 10, 11, 24...
  13. JasonTFleishman

    MSOUTL.OLB Version 9.4 missing

    Well, it's not the same error that Runtime is throwing when using Access, but it's similar and the principle still applies, early-bind when developing, late-bind when distributing. I do both when developing but just comment out the 'late-bind' script.
  14. JasonTFleishman

    MSOUTL.OLB Version 9.4 missing

    It's a pain to learn late binding but worth it. It's just one of those skills you may use once but comes in handy years later for solving problems like 'missing reference'.
Back
Top Bottom