Search results

  1. M

    Trying to run Module from a button

    If you go to the properties of the button on the form you can locate the On Click Event property. From there you can set the code to run when the button is clicked. Not sure if it can reference the Private sub, so if you have strange errors that could be it. Wish I had more for you, but I...
  2. M

    Hide #Error on complicated calculated field

    Glad you got it sorted. Those nested IIFs can get out of hand sometimes.
  3. M

    Hide #Error on complicated calculated field

    A quick google search returned this: http://www.simply-access.com/Hiding-Error-Messages.html
  4. M

    E-cigarettes

    after vaping for over a year exclusively...what a difference. i tried to smoke a cigarette the other day and i physically could not inhale the smoke. i can vape anywhere (minding societal constructs), i don't smell, my mouth tastes delicious, i dont hack shit up, there is no cigarette...
  5. M

    Conditional Formatting Not Working

    Sounds like it may be because it's an expression and not an actual field per se, but I don't know for sure. You can easily test that though. After you format the expression are you given the same options in the property sheet as [30% due date]?
  6. M

    Conditional Formatting Not Working

    I would create a dummy table with a date field and add it to a form. Do the same thing you're doing now and see if you get the same results.
  7. M

    Conditional Formatting Not Working

    The formula works just not with any dates higher than 5 days??
  8. M

    Conditional Formatting Not Working

    How are you inputting your date formulas into the conditional formatting box?
  9. M

    auto populate a date when clicking on another field

    :) Happy to help.
  10. M

    auto populate a date when clicking on another field

    Basically, if you're familiar with VBA, then you will just pick an Event for the control you are "clicking on" and when that Event occurs then set the other control = today's date. If you aren't familiar with Events let me know. For example: Private Sub ClickedControl_AfterUpdate()...
  11. M

    auto populate a date when clicking on another field

    Is this on a form?
  12. M

    Turning Rows into Columns

    I'm having trouble visualizing how this looks in table form...Did you try a Crosstab Query in Access?
  13. M

    Why I hate America

    This forum is extremely easy to troll I've noticed. Very serious opinions around here.
  14. M

    Add new record or select existing

    Have a look at this even though it's for older versions of Access. The principle remains the same. Create a multi field index, so duplicate values can't be entered. Set the "Allow Edits" Property of the form to "Yes" to allow users to edit values such as the address. You can lock fields...
  15. M

    Setuping up Weekly Query

    Need more info. Maybe you can post your original query.
  16. M

    Validation of data in a form

    That seems strange to me. You might want to run a compact and repair on your database and see if that helps. Maybe it is corrupted?
  17. M

    Validation of data in a form

    First, it might help you (and us) to give your controls like comboboxes identifying names, so you quickly know what they refer to. I'm guessing Combo548 is the 'member' selection. I would put the code in the after update event of the second combobox, so that it's triggered immediately, but...
  18. M

    Validation of data in a form

    Try something like this: Private Sub combo2_AfterUpdate() If combo1.value <> 'left' then MsgBox "You must change status to left .... etc" combo1.SetFocus End if
  19. M

    Validation of data in a form

    So basically, after the update of combobox 2 you would need to set combobox 1's value to 'member'. Something like: Private Sub combo2_AfterUpdate() combo1.Value = 'member' I didn't test that. Don't be afraid to post your code. Gotta start somewhere. :)
  20. M

    Site upgrade for mobile use?

    no problem, good luck!
Back
Top Bottom