Connecting Tech Pros Worldwide Help | Site Map

Keep a value in the combobox

egidio.caldeira@gmail.com
Guest
 
Posts: n/a
#1: Jun 15 '06
Hi,

Can any one help me?

how can i do to a combobox keep in new records, the value choose by one
user, until he changes it?

fredg
Guest
 
Posts: n/a
#2: Jun 15 '06

re: Keep a value in the combobox


On 15 Jun 2006 09:51:27 -0700, egidio.caldeira@gmail.com wrote:
[color=blue]
> Hi,
>
> Can any one help me?
>
> how can i do to a combobox keep in new records, the value choose by one
> user, until he changes it?[/color]

Code the Combo Box AfterUpdate event:
Me.ComboName.DefaultValue = """" & Me!ComboName & """"
--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
egidio.caldeira@gmail.com
Guest
 
Posts: n/a
#3: Jun 15 '06

re: Keep a value in the combobox



fredg wrote:[color=blue]
> On 15 Jun 2006 09:51:27 -0700, egidio.caldeira@gmail.com wrote:
>[color=green]
> > Hi,
> >
> > Can any one help me?
> >
> > how can i do to a combobox keep in new records, the value choose by one
> > user, until he changes it?[/color]
>
> Code the Combo Box AfterUpdate event:
> Me.ComboName.DefaultValue = """" & Me!ComboName & """"
> --
> Fred
> Please respond only to this newsgroup.
> I do not reply to personal e-mail[/color]

Thanx for the quick answer :) it works very well.

Closed Thread