Without having looked at the site you mention, might I suggest an alternate
approach?
You could build a continuous form displaying the data fields you want from
your table.
Click on the "Filter By Form" button in your toolbar.
In the ITEM/S DESC: field, type this:
Like "*glasses*"
Then click the Filter button in the toolbar.
Your form should now be filtered to show only items which include the word
"glasses" in the ITEM/S DESC: field.
If you like, you can now put your cursor in the DATE FOUND: field, then
click on the Sort button in the toolbar.
HTH
- Turtle
Yes of course.
What I am trying to accomplish is a special search where I can find a
particular record in my Lost&Found database. This database is cluttered
with
like items and where one record may have the description: glasses gold,
another record will have the description: gold glasses. I want a search
function that will take all of the instances of glasses in the database
and
sort them according to date and list the full description. This I hope to
accomplish with a combo box so that once I find the record I can just
click
on it and the record will be displayed. Right now I have a combobox set
up
with three fields: ID #, DATE FOUND:, and ITEM/S DESC: , but when trying
to
search for a record only the description shows and typing into the
combobox
search field brings up hundreds of like items. [question...why does the
combobox wizard allow more fields to search by If It does not utilize it
when
you finish the wizard? Only one field is displayed.] Anyway, The table
is
named Lost&Found and the fields I want to use in the combobox are DATE
FOUND:, ITEM/S DESC:, AND ID #. The code I wanted to use and modify is
here:
http://www.mcseweb.net/Tutorals/AccessPages/Combos with Tens of Thousands of Records.htm
Is this possible?
:
Perhaps you could explain what needs fixed in your combobox, and why you
think adding code to General Declarations is a good way to go about
this.
Much of your code page is filled with Event Procedures - code which runs
in
response to some event which happens on a form - e.g. Move to a new
record,
change a value in a textbox.
Items which should be available in all Event Procedures are declared
(using
Public, Private, or Dim) in the General Declarations section.
It's hard to say much more than that without more details of what
you're
trying to do.
I am still a bit green when it comes to ACCESS. Where exactly is the
General
Declarations section of your form's module? I need to put some code
in
there
to start fixing a combo box.