help with creating access form to be used as a search engine..

  • Thread starter Thread starter HANS
  • Start date Start date
H

HANS

I have a problem with creating the access form to be used
as a search engine..

The form needs to be done by using the OpenForm method but
I don't know how it works...

The program has problem reading in my input data, it says
that in the Form Name argument, is blank but I have
entered some words into the field..

It continue to prompt me to enter a Form Name argument..

Is it I enter something wrongly, miss to enter some
information or there are other better ways in creating a
search engine for my database???

My database is still within my computer and not in Html
form...




Please help me....


Please help me....
 
I have a problem with creating the access form to be used
as a search engine..

Problem with *creating* the form? or opening it?
The form needs to be done by using the OpenForm method but
I don't know how it works...

DoCmd.OpenForm "frmMyForm"

will open the form named frmMyForm.
The program has problem reading in my input data, it says
that in the Form Name argument, is blank but I have
entered some words into the field..

It continue to prompt me to enter a Form Name argument..

Could you post your code? It is very hard to tell what you might be
doing wrong if you don't tell us what you are doing!
Is it I enter something wrongly, miss to enter some
information or there are other better ways in creating a
search engine for my database???

Access (or Jet, to be more precise; or MSDE if you have installed
that) is your search engine. You don't need to "create a search
engine", you need to use the one you have purchased, using (I presume)
a Form as a tool.
My database is still within my computer and not in Html
form...

Are you working with an Access database? or with a Web Page? Could you
explain what you are trying to accomplish?
 
Back
Top