Search results

  1. W

    Trying to read an Appointment from Outlook

    Absolutely. In fact, why not just tell them to remember what they're supposed to be doing? Why should they get to use Outlook, when they have a brain?
  2. W

    Math Facts Form Needs Time Limit

    Sure. You can have separate "IF...THEN" tests, or you can combine them using ELSE. You'll probably want to keep them separate, as it's easier to keep track of the various conditions that way. And the disable-timing test could go outside the loop, as I presume you wouldn't need to retest the...
  3. W

    validating two dates against each other

    1) Could you not use the Validation Rule on the properties sheets to require "OrderDate" to be in the past and "DateRequired" to be in the future? For OrderDate: <=Now() For DateRequired >=Now() 2) Why can't the date be in letters? It gets remembered as a number anyway, and you can use the...
  4. W

    Math Facts Form Needs Time Limit

    If you're using a do while loop, you can add the command DoEvents inside the loop, which tells VBA to pay attention to other stuff rather than just watching the program go round and round.
  5. W

    Adding data from two columns of a form into one

    Is this just for display purposes? That is, you're not going to be entering or editing data in this box? If so, then you want an unbound text box. From the Toolbox toolbar, create a text box, open Properties (right-click, "Properties") and in the Data tab select Control Source Type in...
Back
Top Bottom