Filter form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hey,

I have a txtbox (txtInvDate) that contains the date. I have a command
button that allows me to change the date with a calendar. The
txtInvDate_Change event does not fire when the command buttons code changes
the date. Any ideas?

I need to refilter the form based on txtInvDate.value

Ernst.
 
Ernst said:
Hey,

I have a txtbox (txtInvDate) that contains the date. I have a
command button that allows me to change the date with a calendar. The
txtInvDate_Change event does not fire when the command buttons code
changes the date. Any ideas?

I need to refilter the form based on txtInvDate.value

Ernst.

Call the after update event for the control in the same code that updates it.
If you look in the help file it does indicate that the change and update events
for a control only fire when the control is edited via the GUI, not from a code
or macro.
 
Thanks... Works fine now.

Rick Brandt said:
Call the after update event for the control in the same code that updates it.
If you look in the help file it does indicate that the change and update events
for a control only fire when the control is edited via the GUI, not from a code
or macro.
 
Back
Top