Saving combobox value

daze

Registered User.
Local time
Today, 13:37
Joined
Aug 5, 2009
Messages
61
Is there a way to save temporally value of combobox?

I have form set on data entry and combobox with value of another table.

Every time I go to next new record combobox value is reset to default one.
I'd like it to stay on previous one...
 
In the Combo's AfterUpdate Event put the following code;
Code:
Me.ComboName.DefaultValue = Me.ComboName
 
In the Combo's AfterUpdate Event put the following code;
Code:
Me.ComboName.DefaultValue = Me.ComboName

Actually, this does the work!

THNX :D
 

Users who are viewing this thread

Back
Top Bottom