I have a combo box on a form which, after the user makes a selection, runs a
make-table query and the new table is part of the rowsource for another combo
box. I also have a Reset button in case the user changes his mind after
making that selection, but when clicking the first combo box the second time,
that's when the error 3211 appears. Does anyone know of a way around this?
Thanks in advance,
--
Glenn
|
|
0
|
|
|
|
Reply
|
Utf
|
10/12/2007 10:48:00 AM |
|
Thanks a million for the answer. It worked like a charm.
--
Glenn
"Ofer Cohen" wrote:
> before you delete the table and create it again clear the combo row source
> and then set it back
>
> Me.ComboName.RowSource = ""
> ' delete table
> ' Create table
> Me.ComboName.RowSource = "select FieldName From TableName"
> Me.ComboName.Requery
>
> --
> Good Luck
> BS"D
>
>
> "Glenn Suggs" wrote:
>
> > I have a combo box on a form which, after the user makes a selection, runs a
> > make-table query and the new table is part of the rowsource for another combo
> > box. I also have a Reset button in case the user changes his mind after
> > making that selection, but when clicking the first combo box the second time,
> > that's when the error 3211 appears. Does anyone know of a way around this?
> > Thanks in advance,
> > --
> > Glenn
|
|
0
|
|
|
|
Reply
|
Utf
|
10/13/2007 7:45:02 PM
|
|