Link to home
Start Free TrialLog in
Avatar of Aquarus
Aquarus

asked on

DTPicker VB6 event

I have a form with a datepicker on it.  I need some action is to be completed on this form as asson as I select the date.

Please take a look at the sample:

Private Sub dtpUnaudited_Click()
DatePickerEventPopulateCAControls CStr(dtpUnaudited.Value), "UNAUDITED"
End Sub

I have also tried dtpUnaudited_Change()

Neither of this events start  DatePickerEventPopulateCAControls routine.

Can somebody explain me why and help to resolve this issue?
ASKER CERTIFIED SOLUTION
Avatar of Brook Braswell
Brook Braswell
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial

good morning!

try this event...

Private Sub dtpUnaudited_CloseUp()
    DatePickerEventPopulateCAControls CStr(dtpUnaudited.Value), "UNAUDITED"
End Sub



i hope i can give u some idea...



game-master
Avatar of Aquarus
Aquarus

ASKER

It helped. Thanks