Search results

  1. NeoZakz

    Save variable from Dlookup to field?

    Is there a way to save a variable from a Dlookup to a field in the table that is blank maybe? Or can you do a dateadd on a dlookup field?
  2. NeoZakz

    Re-running a field event on refresh?

    Is there a way in a form to re-run a field event on a refresh command or on load maybe? Ive got a field in detail which loads different letter #'s and some info with them and I want to make a way to refresh it so that when I change something for one thats connected to others it re-runs the...
  3. NeoZakz

    Auto Refreshing data?

    I have a form with 2 sub forms in it. And I just finished the code to update some dates in there. But what Im having trouble with now is that when I change the dates on the form where it pulls the dates from I cant get it to update the other subform that uses them. Anyone got any ideas on how...
  4. NeoZakz

    How do you get a combo box to auto-lookup its value?

    I have the following code in VB: Private Sub days_after_AfterUpdate() If IsNull(Me![Combo119]) Then Me![Date Due] = DateAdd("d", Me![Seq], Me![Date Due]) Else DLookup("[Miledate]", "Mile1", Me![Date Due] = Me![Combo119]) = Me![Date Due].Value = DateAdd("d", Me![Seq], Me![Date...
Back
Top Bottom