473,785 Members | 3,417 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Entering Data for New Records

When I start to type the data for a new record, I would like a dropdown box to
open next to it from which I can choose the data from a previously entered
record that starts with the same letter. This is the way my previous database,
Approach, worked. I have tried using the form design toolbox wizard for this
but have had no success. I perused the Help menus and found some deficient
instructions on List, Combo and Dropdown. The dropdown icon is not in the
toolbox, as the Help says it should be. Please give me step by step
instructions, using the wizard if possible -- I realize some of you go right to
Basic and enter your instructions there, but I would prefer to employ the
user-friendly route. Thanks.

Neil
Cat Paintings At Carol Wilson Gallery
http://www.carolwilsongallery.com
Nov 13 '05
12 2286
Ok Neil, last try:

1. Create a combo box
2. Open its properties
3. Set Rowsource type: Table/Query
4. Click the Rowsource line, then press the ... (three dots)
5. Insert the Table or Query you use as the source of your form where this
combo box exists
6. Insert the field that you want to be the source of your combo box (sort
it if you want)
7. Double-click the grey area next to your table above the QBE (query by
example) Grid.
8. Choose UNIQUE VALUES = YES
9. Close the builder (dont click the save icon or save the builder..just
close it)
10. Set your column width to 2" and row width to 2"
11. Set Limit to List = YES
12. Click the events tab. On the OnEnter event...click the ... (3 dots) and
choose code builder
12. enter the code: [whateveryourcom boboxnameis].requery

It should work now.

I really hope this helps!!!!!!!!!! !!!
let me know

Paul
=============== =============== ======

"Nhmiller" <nh******@aol.c omnojunk> wrote in message
news:20******** *************** ****@mb-m13.aol.com...
The Unique Properties of this contol are found when you use the "Builder"
to
the right of the record source. Just go there and double-click the grey
area above the GBE and you will see the properties...ju st select Unique


Is the "Builder" the triangle? What is GBE? Thanks.
Also, thanks for your offer to do the operation for me, but I just need
the
proper directions. Something's missing from the directions you gave me,
because
I am following them, but the choices you say are supposed to be there are
not.
Let's not close off this thread. I hope if you'll answer the above
questions,
I'll find what I'm looking for.

Neil
Cat Paintings At Carol Wilson Gallery
http://www.carolwilsongallery.com

Nov 13 '05 #11
>1. Create a combo box
2. Open its properties
3. Set Rowsource type: Table/Query
4. Click the Rowsource line, then press the ... (three dots)
5. Insert the Table or Query you use as the source of your form where this
combo box exists
6. Insert the field that you want to be the source of your combo box (sort
it if you want)
7. Double-click the grey area next to your table above the QBE (query by
example) Grid.
8. Choose UNIQUE VALUES = YES
9. Close the builder (dont click the save icon or save the builder..just
close it)
10. Set your column width to 2" and row width to 2"
11. Set Limit to List = YES
12. Click the events tab. On the OnEnter event...click the ... (3 dots) and
choose code builder
12. enter the code: [whateveryourcom boboxnameis].requery


Yes, it worked!

Limit To List should be set to No if I want to add new values. If it is set to
Yes, then the requery statement is not necessary, as Limit To List Yes will not
allow new values.

I assume I must use this procedure for each combo box -- that I cannot select
them all and set the various items universally -- correct me if I'm wrong. I
imagine there are SQL statements that can do this. Since I finally know now how
to get to the Unique Value settings, I should be able to get databases to work
with what I consider standard time saving features. Radio buttons are next (is
that what Access calls them?). I'll post if there are further difficulties!! --
(I bet you can't wait.)

Paul, you are aware obviously, that Access (and I suspect all of Office) is
very strange software. It is NOT user-friendly, but relies on a technical
approach, which is good for flexibility. But, I don't understand why Microsoft
doesn't also build in commands to do the typical things like this
automatically. For instance, duplicating a record is a handy button to have,
but there is none (I know what you're going to say -- make a macro and assign a
shortcut).

It's as though the software engineers made the applications so complex and
feature laden that when the documentation had to be done, there was no way to
cover every situation a user may want to do, so only general technical help
instructions are given. Instructions for common situations, like the combo box,
do not exist, because the number of permutations of what someone could do with
it are huge. OK, it works anyway without setting Unique Values to Yes -- maybe
only a perfectionist like me wants a proper list.

Correct me if I'm wrong, but the instructions you gave me are not in the Help
menus. If I enter Unique Values in the Help window, there is a general
statement about it, but, for instance, no instruction about double clicking the
huge gray area to get to the properties -- how would anyone know to do that?!!

I did find instructions for requery, but there is no way I would have known to
look for that if I had not already learned it from you.

I can only hope that the books I will be perusing will have the instructions I
need in the future. I am curious as to how you learned the instructions you
gave me -- for example, point me to any documentation that mentions the double
clicking to get to the properties.

Thanks for your help.

Neil
Cat Paintings At Carol Wilson Gallery
http://www.carolwilsongallery.com
Nov 13 '05 #12
> Limit To List should be set to No if I want to add new values. If it is
set to
Yes, then the requery statement is not necessary, as Limit To List Yes
will not
allow new values.
Sorry about that one...yes, you are correct. (just and oversight).
I assume I must use this procedure for each combo box -- that I cannot
select
them all and set the various items universally -- correct me if I'm wrong.
I
imagine there are SQL statements that can do this. Since I finally know
now how
to get to the Unique Value settings, I should be able to get databases to
work
with what I consider standard time saving features. Radio buttons are next
(is
that what Access calls them?). I'll post if there are further
difficulties!! --
(I bet you can't wait.)
You can select multiple fields and apply properties all at one time. If you
select multiple fields and open the Properties window you will seee the
words Multiple Selected at the top of the window. Only common properties
between the selected fields will be available...use your shift key to select
multiple.
Paul, you are aware obviously, that Access (and I suspect all of Office)
is
very strange software. It is NOT user-friendly, but relies on a technical
approach, which is good for flexibility. But, I don't understand why
Microsoft
doesn't also build in commands to do the typical things like this
automatically. For instance, duplicating a record is a handy button to
have,
but there is none (I know what you're going to say -- make a macro and
assign a
shortcut).
There is one...just click the Command Button icon on the Toolbox and pick
the Records Category and choose Duplicate Record from the right side.
It's as though the software engineers made the applications so complex and
feature laden that when the documentation had to be done, there was no way
to
cover every situation a user may want to do, so only general technical
help
instructions are given. Instructions for common situations, like the combo
box,
do not exist, because the number of permutations of what someone could do
with
it are huge. OK, it works anyway without setting Unique Values to Yes --
maybe
only a perfectionist like me wants a proper list.

Correct me if I'm wrong, but the instructions you gave me are not in the
Help
menus. If I enter Unique Values in the Help window, there is a general
statement about it, but, for instance, no instruction about double
clicking the
huge gray area to get to the properties -- how would anyone know to do
that?!!
The "Grey" area is above the QBE. It is all documented under the Query
Properties Help or QBE Help. Here is the thing...If you are unfamilliar
with these things you should really pick up and basic intro book to using
Access or take an introduction Access course. This kind of stuff should be
basic knowledge...tha ts the problem if you dive right in without educating
yourself on the basics of the application. I have instructed heavy users of
Excel, who know how to do what they need to do, but have no idea of what the
program is capable of, because they never took the time to learn the basics.
You need a good foundation for any program.
I did find instructions for requery, but there is no way I would have
known to
look for that if I had not already learned it from you.
Thats why you should purchase at least 1 intro books! I own 5 intro books
and 3 advanced books just for access alone.
I can only hope that the books I will be perusing will have the
instructions I
need in the future. I am curious as to how you learned the instructions
you
gave me -- for example, point me to any documentation that mentions the
double
clicking to get to the properties.
Read books, newsgroup posts (here and google), look at examples of other
sample databases and reverse engineer them...I am completely self-taught,
but it has taken a while. I also taught for a training company..and picked
up a few things there from the materials I was using, plus the questions my
students had.

Thanks for your help.


Welcome.
Nov 13 '05 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1586
by: Rose | last post by:
I have a transactions table with a field named Transaction. I want Transaction to be positive for input and negative for outflow. How do I set up the form for entering outflow so for data entry, the value is entered as a positive number, is stored as a negative number and when the form is opened to the same record it displays a a positive number. Is the form based on a query and if so what does the Transaction field in the query look like?...
5
1486
by: Paul | last post by:
Hi This has taken me ages to work out but i'm sure there is a simple explanation and somebody here will be able to help. I'll talk you through it as best i can: 1. User enters dates on an initial form 2. This then opens up another form asking for shift colour (red/blue/green) and times shift start and end on dates entered in 1st form. 3. This is where the problem starts...I have set up queries to
1
5420
by: Scott269 | last post by:
So I've got an old MS Works database I imported into Access. I needed a primary key so I created a record number field that was just the record number I manually inserted when I entered it in the database so I could sort the records by the date at which they were entered. Well now I've deleted some of those records so its of course causing gaps in the records. The record number in Access no longer matches my record number that I...
1
1302
by: Fendi Baba | last post by:
I created a form based on a query, likewise the i also have a subform based on query, How do I create new records, allowing users to enter the data in the main form and subform together? Can this be done or must it be done independently?
2
2414
by: Eddie Malone | last post by:
Hi, I'm an access newbie. It is a great little toy and I'm trying to get better at it all the time. I am trying to design a form that will feed into a table. For example sake we will say there are three fields: 1-Unique # 2-Container # 3-Cartons
1
2169
by: jeffblk | last post by:
Hello: Is there a simple way to track who is entering records into a database? We have a one table, one form simple database that two people use to assign medical cases. We would like to know which user entered the record without the user typing in their name or picking their name from a drop down list in a field. We are doing this to measure productivity of our data entry staff. There is no login or passwords used to access the database....
4
5885
by: dirk | last post by:
Hey, I'm new to php and I'm trying to write some php code so that I can insert data into a mysql database using html forms. I've got two text forms and a submit button. When entering data and selecting 'submit' a new record in my database is created. So far so good... But when I enter data in only one content and hit the enter key a new record is created with one empty field. And that something I don't want to happen.
6
2804
by: robintwos | last post by:
Hi I would like to validate the while entering the data in a textbox for numeric values. it means . i would like to throw an error message when the user enters a character value. validation should happen while entering it self . I am looking for the piece of code in VB.NET. Please do help me Thanks
2
1695
by: robertns5411 | last post by:
I have two questions: 1) Say I have a form bound to a table. Assume the user is entering data into a new record at the bottom of the form. Now, suppose the user clicks a button on the form while he's still entering data and hasn't yet saved the record that he is modifying. How can the button's click event procedure test to know that the user is in the middle of entering new data? I've tried testing against the form's recordset's...
0
9643
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9480
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10315
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10085
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9947
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7494
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5379
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4045
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3645
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.