Does anyone know what my problem might be?
I am trying to refer to a certain instance of a form that I've added to a collection. I am adding several instances of the same form to a Collection object called colForms, then trying to access the information on them from a different module.
In the...
Does anyone know what my problem might be?
I am trying to refer to a certain instance of a form that I've added to a collection. I am adding several instances of the same form to a Collection object called colForms, then trying to access the information on them from a different module.
In the...
I don't know why I hadn't considered that. The InStr function sounds great. For instance my WHERE clause could look like this:
"InStr([Title], TitleStr) <> 0"
Now all I need is to be able to narrow this down to whole words only. In other words, if TitleStr="age", then the...
I am building a search engine, and would like to get your ideas on how to (elegantly) search for individual (whole) words within fields. For instance if I want to search for a book by entering a word (or mulitiple words) into the Title field (of the search form), what is the best way to form the...
You can create a form with nothing on it, and have it open up on Startup (Tools menu, then Startup...). Use the form's Open Event to set it's Visible property to False (i.e. Me.Visible = False) - (you can also use this event to open another form that you may already need to open on Startup). The...
Try the SetWarnings Method:
DoCmd.SetWarnings False
Code...Code...Code
DoCmd.SetWarnings True
You may also want to use this in conjunction with the Echo Method, such as:
DoCmd.Echo False
DoCmd.SetWarnings False
Code...Code...Code
DoCmd.SetWarnings True
DoCmd.Echo True
Hope this helps,
JW.
I just got a new computer and installed my Office 2000 Premium. When I got back to work on my database, I noticed that all the help topics related to JET and DAO are missing from the VBA help. For instance, when I go to Help from the VBA editor and search for "HAVING CLAUSE", or...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.