PC Review


Reply
Thread Tools Rate Thread

Beginner with ComboBox

 
 
Mort
Guest
Posts: n/a
 
      23rd Apr 2010
I am designing my second database, Access 2007.
I need a drop-down list on a form which enters data into the table tblStats.
I want a combo box and will type in three values,
Complete;Incomplete;Pending. When one of these values is selected for the
active record, that value should go to the field Status in the table tblStats.
I can not figure out how to accomplish this. Please help

Mortimer
 
Reply With Quote
 
 
 
 
Al Campagna
Guest
Posts: n/a
 
      23rd Apr 2010
Mort,
A combo control (like a text control) can be "bound"
to a field in the table/query behind the form. Which means that any
value entered into that control, when updated, will be written to that
field in the table. Fields that are bound to the control are indicated in
the control's ControlSource property.
From what you've desciribed, you should be able to
"bind" the combo control to the Status field in tblStats.
Make sure Status is included in the query behind the form, and enter
Status
in the ControlSource for your combo.

Set your combo's RowSourceType to Value List
Enter "Complete"; "Incomplete"; "Pending" into the combo's RowSource
--
hth
Al Campagna
Microsoft Access MVP 2007-2009
http://home.comcast.net/~cccsolutions/index.html

"Find a job that you love... and you'll never work a day in your life."

"Mort" <(E-Mail Removed)> wrote in message
news968D908-5FF3-49FD-BB8A-(E-Mail Removed)...
>I am designing my second database, Access 2007.
> I need a drop-down list on a form which enters data into the table
> tblStats.
> I want a combo box and will type in three values,
> Complete;Incomplete;Pending. When one of these values is selected for the
> active record, that value should go to the field Status in the table
> tblStats.
> I can not figure out how to accomplish this. Please help
>
> Mortimer



 
Reply With Quote
 
Jeff Boyce
Guest
Posts: n/a
 
      23rd Apr 2010
Mort

I've always heard that it is your SECOND application which is the most
dangerous ... after you learn enough to finish the first ...

Good luck!

Regards

Jeff Boyce
Microsoft Access MVP

--
Disclaimer: This author may have received products and services mentioned
in this post. Mention and/or description of a product or service herein
does not constitute endorsement thereof.

Any code or pseudocode included in this post is offered "as is", with no
guarantee as to suitability.

You can thank the FTC of the USA for making this disclaimer
possible/necessary.

"Mort" <(E-Mail Removed)> wrote in message
news968D908-5FF3-49FD-BB8A-(E-Mail Removed)...
>I am designing my second database, Access 2007.
> I need a drop-down list on a form which enters data into the table
> tblStats.
> I want a combo box and will type in three values,
> Complete;Incomplete;Pending. When one of these values is selected for the
> active record, that value should go to the field Status in the table
> tblStats.
> I can not figure out how to accomplish this. Please help
>
> Mortimer



 
Reply With Quote
 
Mort
Guest
Posts: n/a
 
      23rd Apr 2010
Thank you. I can attest to that fact and am proceding very cautiously.

The first was rather simple, four tables and I was given enough time so that
I could understand what was being written about on the 1NF,2NF, and 3NF.
Customers, Products, Orders, and Shipments tables (no partial shipments so
Primary Keys and Joins were not to hard to figure out).
This one is much more difficult - I am being approached to do it after my
initial success. I have registered for Access training at a Microsoft
certified training company for a three day instructor led class, but it is 7
weeks into the future.

"Jeff Boyce" wrote:

> Mort
>
> I've always heard that it is your SECOND application which is the most
> dangerous ... after you learn enough to finish the first ...
>
> Good luck!
>
> Regards
>
> Jeff Boyce
> Microsoft Access MVP
>
> --
> Disclaimer: This author may have received products and services mentioned
> in this post. Mention and/or description of a product or service herein
> does not constitute endorsement thereof.
>
> Any code or pseudocode included in this post is offered "as is", with no
> guarantee as to suitability.
>
> You can thank the FTC of the USA for making this disclaimer
> possible/necessary.
>
> "Mort" <(E-Mail Removed)> wrote in message
> news968D908-5FF3-49FD-BB8A-(E-Mail Removed)...
> >I am designing my second database, Access 2007.
> > I need a drop-down list on a form which enters data into the table
> > tblStats.
> > I want a combo box and will type in three values,
> > Complete;Incomplete;Pending. When one of these values is selected for the
> > active record, that value should go to the field Status in the table
> > tblStats.
> > I can not figure out how to accomplish this. Please help
> >
> > Mortimer

>
>
> .
>

 
Reply With Quote
 
Jeff Boyce
Guest
Posts: n/a
 
      23rd Apr 2010
Depending on who you're trained by, you will probably get (only) intense
focus on #2, and some focus on #1. I'll be curious (here) to hear about it
afterwards...

Good luck!

Jeff

"Mort" <(E-Mail Removed)> wrote in message
news:427D4C99-0760-4D71-ACE7-(E-Mail Removed)...
> Thank you. I can attest to that fact and am proceding very cautiously.
>
> The first was rather simple, four tables and I was given enough time so
> that
> I could understand what was being written about on the 1NF,2NF, and 3NF.
> Customers, Products, Orders, and Shipments tables (no partial shipments so
> Primary Keys and Joins were not to hard to figure out).
> This one is much more difficult - I am being approached to do it after my
> initial success. I have registered for Access training at a Microsoft
> certified training company for a three day instructor led class, but it
> is 7
> weeks into the future.
>
> "Jeff Boyce" wrote:
>
>> Mort
>>
>> I've always heard that it is your SECOND application which is the most
>> dangerous ... after you learn enough to finish the first ...
>>
>> Good luck!
>>
>> Regards
>>
>> Jeff Boyce
>> Microsoft Access MVP
>>
>> --
>> Disclaimer: This author may have received products and services mentioned
>> in this post. Mention and/or description of a product or service herein
>> does not constitute endorsement thereof.
>>
>> Any code or pseudocode included in this post is offered "as is", with no
>> guarantee as to suitability.
>>
>> You can thank the FTC of the USA for making this disclaimer
>> possible/necessary.
>>
>> "Mort" <(E-Mail Removed)> wrote in message
>> news968D908-5FF3-49FD-BB8A-(E-Mail Removed)...
>> >I am designing my second database, Access 2007.
>> > I need a drop-down list on a form which enters data into the table
>> > tblStats.
>> > I want a combo box and will type in three values,
>> > Complete;Incomplete;Pending. When one of these values is selected for
>> > the
>> > active record, that value should go to the field Status in the table
>> > tblStats.
>> > I can not figure out how to accomplish this. Please help
>> >
>> > Mortimer

>>
>>
>> .
>>



 
Reply With Quote
 
Mort
Guest
Posts: n/a
 
      23rd Apr 2010
I will post back on this thread after the training is concluded, late June.

"Jeff Boyce" wrote:

> Depending on who you're trained by, you will probably get (only) intense
> focus on #2, and some focus on #1. I'll be curious (here) to hear about it
> afterwards...
>
> Good luck!
>
> Jeff
>
> "Mort" <(E-Mail Removed)> wrote in message
> news:427D4C99-0760-4D71-ACE7-(E-Mail Removed)...
> > Thank you. I can attest to that fact and am proceding very cautiously.
> >
> > The first was rather simple, four tables and I was given enough time so
> > that
> > I could understand what was being written about on the 1NF,2NF, and 3NF.
> > Customers, Products, Orders, and Shipments tables (no partial shipments so
> > Primary Keys and Joins were not to hard to figure out).
> > This one is much more difficult - I am being approached to do it after my
> > initial success. I have registered for Access training at a Microsoft
> > certified training company for a three day instructor led class, but it
> > is 7
> > weeks into the future.
> >
> > "Jeff Boyce" wrote:
> >
> >> Mort
> >>
> >> I've always heard that it is your SECOND application which is the most
> >> dangerous ... after you learn enough to finish the first ...
> >>
> >> Good luck!
> >>
> >> Regards
> >>
> >> Jeff Boyce
> >> Microsoft Access MVP
> >>
> >> --
> >> Disclaimer: This author may have received products and services mentioned
> >> in this post. Mention and/or description of a product or service herein
> >> does not constitute endorsement thereof.
> >>
> >> Any code or pseudocode included in this post is offered "as is", with no
> >> guarantee as to suitability.
> >>
> >> You can thank the FTC of the USA for making this disclaimer
> >> possible/necessary.
> >>
> >> "Mort" <(E-Mail Removed)> wrote in message
> >> news968D908-5FF3-49FD-BB8A-(E-Mail Removed)...
> >> >I am designing my second database, Access 2007.
> >> > I need a drop-down list on a form which enters data into the table
> >> > tblStats.
> >> > I want a combo box and will type in three values,
> >> > Complete;Incomplete;Pending. When one of these values is selected for
> >> > the
> >> > active record, that value should go to the field Status in the table
> >> > tblStats.
> >> > I can not figure out how to accomplish this. Please help
> >> >
> >> > Mortimer
> >>
> >>
> >> .
> >>

>
>
> .
>

 
Reply With Quote
 
Jeff Boyce
Guest
Posts: n/a
 
      23rd Apr 2010
My apologies, I had also posted a response today that listed 4 learning
curves most folks need to surmount to build Access apps that get used.

My previous comment would have made more sense if I had listed the 4 curves!

1) relational database design - Access looks for data organized this way
2) Access tricks -- classes tend to focus here, not so much on #1
3) Graphical User Interface design -- if it isn't easy to understand and
use, folks won't
4) Application development -- hey! would you try to build a house without
knowing how the process goes?!

Good luck!

Regards

Jeff Boyce
Microsoft Access MVP

--
Disclaimer: This author may have received products and services mentioned
in this post. Mention and/or description of a product or service herein
does not constitute endorsement thereof.

Any code or pseudocode included in this post is offered "as is", with no
guarantee as to suitability.

You can thank the FTC of the USA for making this disclaimer
possible/necessary.

"Mort" <(E-Mail Removed)> wrote in message
news:AC9DD4A4-0F6B-4D5A-95B3-(E-Mail Removed)...
>I will post back on this thread after the training is concluded, late June.
>
> "Jeff Boyce" wrote:
>
>> Depending on who you're trained by, you will probably get (only) intense
>> focus on #2, and some focus on #1. I'll be curious (here) to hear about
>> it
>> afterwards...
>>
>> Good luck!
>>
>> Jeff
>>
>> "Mort" <(E-Mail Removed)> wrote in message
>> news:427D4C99-0760-4D71-ACE7-(E-Mail Removed)...
>> > Thank you. I can attest to that fact and am proceding very cautiously.
>> >
>> > The first was rather simple, four tables and I was given enough time so
>> > that
>> > I could understand what was being written about on the 1NF,2NF, and
>> > 3NF.
>> > Customers, Products, Orders, and Shipments tables (no partial shipments
>> > so
>> > Primary Keys and Joins were not to hard to figure out).
>> > This one is much more difficult - I am being approached to do it after
>> > my
>> > initial success. I have registered for Access training at a Microsoft
>> > certified training company for a three day instructor led class, but
>> > it
>> > is 7
>> > weeks into the future.
>> >
>> > "Jeff Boyce" wrote:
>> >
>> >> Mort
>> >>
>> >> I've always heard that it is your SECOND application which is the most
>> >> dangerous ... after you learn enough to finish the first ...
>> >>
>> >> Good luck!
>> >>
>> >> Regards
>> >>
>> >> Jeff Boyce
>> >> Microsoft Access MVP
>> >>
>> >> --
>> >> Disclaimer: This author may have received products and services
>> >> mentioned
>> >> in this post. Mention and/or description of a product or service
>> >> herein
>> >> does not constitute endorsement thereof.
>> >>
>> >> Any code or pseudocode included in this post is offered "as is", with
>> >> no
>> >> guarantee as to suitability.
>> >>
>> >> You can thank the FTC of the USA for making this disclaimer
>> >> possible/necessary.
>> >>
>> >> "Mort" <(E-Mail Removed)> wrote in message
>> >> news968D908-5FF3-49FD-BB8A-(E-Mail Removed)...
>> >> >I am designing my second database, Access 2007.
>> >> > I need a drop-down list on a form which enters data into the table
>> >> > tblStats.
>> >> > I want a combo box and will type in three values,
>> >> > Complete;Incomplete;Pending. When one of these values is selected
>> >> > for
>> >> > the
>> >> > active record, that value should go to the field Status in the table
>> >> > tblStats.
>> >> > I can not figure out how to accomplish this. Please help
>> >> >
>> >> > Mortimer
>> >>
>> >>
>> >> .
>> >>

>>
>>
>> .
>>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Howto make Combobox requery based on dependant combobox values Shane Microsoft Access Form Coding 1 22nd Apr 2008 09:14 AM
HowTo? shift focus in VBA IDE between Object combobox, procedure combobox, and Code window Malcolm Cook Microsoft Access 0 11th Oct 2005 03:42 PM
No Class at ALL!!! beginner/beginner question =?Utf-8?B?S3VydCBTY2hyb2VkZXI=?= Microsoft ASP .NET 7 3rd Feb 2005 02:47 PM
VBA beginner needs assistance with ComboBox in a User Form Nufk@mp Microsoft Excel Misc 2 22nd Feb 2004 07:30 PM
Bug: Combobox.dropdown = True during Form.New() causes listbox to be disabled, even though combobox is Enabled. =?Utf-8?B?UmF0a2lsZXk=?= Microsoft Dot NET Framework Forms 1 12th Feb 2004 09:58 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 04:04 AM.