Ask a Question related to Microsoft Access, Design and Development.
-
Donna Grant #1
Search form including a drop down box, keywords and a serach button
I'm trying to create a custom search box in MS Access 97. I'd like
there to be a drop down list of all the fields, and then a text box
for the user to enter their keyword. Alongside there would be a 'Go'
button which would run the search for the keyword in the selected
field...
I know I will have to create a form with a combo box, a text box and
then SQL query but I'm not sure how to put it all together.
Please help
Donna Grant Guest
-
Including an swf in a tabbed form
Hi. With the tabbed <cfform> can I include my own swf file as the content of each of the tabs? EG: EG: <cfform skin="haloBlue"... -
Creating a serach form
I wish to create search page and results page for searching an Access Database using asp. The Databse has several tables with several relationships... -
MySql search question. Searching on keywords
How do site searches work? I want to create a MySQL database with a field called "keywords". Then a form with a search phrase input box. I... -
Form Search Button
Hi I have almost finished a database and it does everything I want it to at the moment except one thing. On the Forms that I have made, I have... -
What's the CDML code to highlight the keywords in the search result page please?
Hello,group Would anyone know how to write CDML code to highlight the keywords (not in different font color)in the search result page please? ... -
Steve Ward #2
Search form including a drop down box, keywords and a serach button
First of all, give everything a name. (The form, the text
box, combo box and button).
Now, create a query in query builder that shows all the
fields you want to show, but also has a WHERE clause that
looks for the value in your drop down box and text box to
get the field nams and criteria (instead of hardcoding).
Save and name this query (eg query1)
Then, add an event to the on click of your button which is
docmd.openquery(query1)
OR... you could have another form which instead of being
linked to a table is linked to the query and it will then
display the results in text boxes.
Hope this points you in the right Direction
I'd like>-----Original Message-----
>I'm trying to create a custom search box in MS Access 97.a text box>there to be a drop down list of all the fields, and thenwould be a 'Go'>for the user to enter their keyword. Alongside thereselected>button which would run the search for the keyword in thetext box and>field...
>
>I know I will have to create a form with a combo box, atogether.>then SQL query but I'm not sure how to put it all>
>Please help
>.
>Steve Ward Guest
-
Con Giacomini #3
Re: Search form including a drop down box, keywords and a serach button
There is a QBF program for Access 97 that provides "Filter by Form"
functionality. Download it from:
[url]http://www.hammerdata.com/Newsgrp/resources/downloads.htm#Q[/url]
"Steve Ward" <steve.ward@excelaid.com> wrote in message
news:7fa801c35a91$9644b9b0$a001280a@phx.gbl...>
> First of all, give everything a name. (The form, the text
> box, combo box and button).
>
> Now, create a query in query builder that shows all the
> fields you want to show, but also has a WHERE clause that
> looks for the value in your drop down box and text box to
> get the field nams and criteria (instead of hardcoding).
>
> Save and name this query (eg query1)
>
> Then, add an event to the on click of your button which is
>
> docmd.openquery(query1)
>
> OR... you could have another form which instead of being
> linked to a table is linked to the query and it will then
> display the results in text boxes.
>
> Hope this points you in the right Direction
>
>
>
>
>
>> I'd like> >-----Original Message-----
> >I'm trying to create a custom search box in MS Access 97.> a text box> >there to be a drop down list of all the fields, and then> would be a 'Go'> >for the user to enter their keyword. Alongside there> selected> >button which would run the search for the keyword in the> text box and> >field...
> >
> >I know I will have to create a form with a combo box, a> together.> >then SQL query but I'm not sure how to put it all> >
> >Please help
> >.
> >
Con Giacomini Guest



Reply With Quote

