Update Rowsource Records in unbound combos

  • Thread starter Thread starter Bill
  • Start date Start date
B

Bill

If I have an unbound combo box with a Rowsource
that includes an "autonumberd" ID field, AND, I want
to update one of the other fields in current row, how
do I go about doing that?

Say my Rowsource is comprised of a record:

MyID, MySpecialValue, MyTextField

and, I want to update MySpecialValue.

Bill
 
If I have an unbound combo box with a Rowsource
that includes an "autonumberd" ID field, AND, I want
to update one of the other fields in current row, how
do I go about doing that?

Say my Rowsource is comprised of a record:

MyID, MySpecialValue, MyTextField

and, I want to update MySpecialValue.

Bill

By Update do you mean to change the values in each record's
[MySpecialValue] field?

You'll need to run an Update query on the table that contains that
field.

If you mean something else, please post back with more information.
 
By Update do you mean to change the values in each record's
[MySpecialValue] field?
No, just the MySpecialValue field in the currently selected row.
Bill


fredg said:
If I have an unbound combo box with a Rowsource
that includes an "autonumberd" ID field, AND, I want
to update one of the other fields in current row, how
do I go about doing that?

Say my Rowsource is comprised of a record:

MyID, MySpecialValue, MyTextField

and, I want to update MySpecialValue.

Bill

By Update do you mean to change the values in each record's
[MySpecialValue] field?

You'll need to run an Update query on the table that contains that
field.

If you mean something else, please post back with more information.
 
An update query did the trick.
Thanks,
Bill



Bill said:
By Update do you mean to change the values in each record's
[MySpecialValue] field?
No, just the MySpecialValue field in the currently selected row.
Bill


fredg said:
If I have an unbound combo box with a Rowsource
that includes an "autonumberd" ID field, AND, I want
to update one of the other fields in current row, how
do I go about doing that?

Say my Rowsource is comprised of a record:

MyID, MySpecialValue, MyTextField

and, I want to update MySpecialValue.

Bill

By Update do you mean to change the values in each record's
[MySpecialValue] field?

You'll need to run an Update query on the table that contains that
field.

If you mean something else, please post back with more information.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top