Ask a Question related to Microsoft Access, Design and Development.
-
John Vinson #1
Re: Altering a Record In a Form
On Sat, 5 Jul 2003 15:35:21 -0700, "Jen" <jen@noemail.com> wrote:
If you have a "Bound" combo box, *that is precisely what it's intended>I'm trying to select a record through a combo box and then
>based on that record I want to input information that will
>attach to that record on that table. Right now I select
>the number from a combo box, then I go to put info in and
>it puts it in the first record not the one I've selected.
to do*. Check the Combo's Control Source property: if it's not blank,
then selecting a value from that combo box will overwrite that field
in the current record of your Table.
If, instead, you want the selection of a value from the Combo to find
a different record on the Form, you should be using an *unbound* combo
box with some VBA code in its AfterUpdate event to find the record.
The Combo Box wizard offers this as one of the options when creating a
new combo - "use this combo to find a record". If the wizard isn't
available, post back; the code isn't difficult.
John W. Vinson[MVP]
Come for live chats every Tuesday and Thursday
[url]http://go.compuserve.com/msdevapps?loc=us&access=public[/url]
John Vinson Guest
-
Change form record to match another form
I had a form with a lot of controls/subforms and this was causing my database to move slow. I decided to split the controls on two forms. Each... -
Entering new record on form
How do I make the form go to a new record as I open it so it is ready to fill in. -
Can't add new record to a form
I am using Access 2000. I created twp databases that are linked by one field. The first db is called "MDO" - the 2nd is "ECR", they are linked... -
Can't add record in the form
I have a form that allows user to view records for a specific client. If I would like to add a record, I get a message: "Can't add record(s); join... -
look up record using ste values from one form on another form
it did not work here is the code i am using with the code you sent the command below operates off of a command button to find the record i want i...



Reply With Quote

