Try adding this to the "On GotFocus" event for the combo box.
(Combo name).Value = ""
(Combo name).Requery
Replace (Combo name) with the name of your combo box. This isn't the cleanest way to do it, but it should clear the combo box everytime it receives the...
Not sure which library it's in, but I had the same problem with an Access database on a new computer. I had to have our I.S. department do a full install of office to get it to work (which it did work just fine after that).
Lillypad
You can do this by changing the "Row Source" for the combo box to a query rather than direct from a table. Here is an example that I used to display UserLastname, Userfirstname from a combo box.
SELECT Users.UserID, [UserLname] & " " & [UserFname] AS Expr1 FROM Users;
You...
I am creating an Access database which will store generic files as OLE objects in a backend MDB (No problem with this so far). I can import the files to the MDB programmatically and I can extract them using the Object Packager->File->Save Contents option. I would like to be able to save the...
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.