1
vote
Rebind Access combo box
The easiest way is to guarantee that the combobox is always up-to-date is to just requery the combobox once it gets the focus. Even if the recordset is then updated somewhere else, your combobox is …
0
votes
Custom row source for combo box in continuous form in Access
We also encounter this a lot in our applicatins. What we have found to be a good solution:
Just show all rows in the comboboxes.
Then, as soon as the user enters the compobox in a specific row, adj …
0
votes
What are some good techniques to convert an Ms Access application to a .Net Application?
Converting to an adp will not be a good solution in the long term - this technology is abandoned by Microsoft.
If you want to switch to .net (why? do you have a reason to favour .net?) I su …
1
vote
Problem with MS Access, the clipboard and something called Biff5!
Instead of trying to copy-paste, can't you just export the query to Excel?
…
0
votes
Change datatype when importing Excel file into Access
When importing from CSV files you can also have a look at schema.ini you will find that with this you can control …
1
vote
Easiest way to decrypt PGP-encrypted files from VBA (MS Access)
I would look for a command line encrypter / decrypter and just call the exe from within your Access application, with the right parameters.
There is no PGP encrypter / decrypter in VBA that …
1
vote
Is it safe to run Access 2003 and 2007 at the same time?
It is perfectly safe, I have done it very often (both running and developing). As soon as you open a database in Access 2007, some extra properties will be added to the database. However, this is d …
0
votes
How to display image from sql server in ms access
I think you can do this by using streams. Stream the image from the field to an unbound image control. We use the same process for opening documents and other binary data stored in an SQL Server da …
0
votes
How to import a files like PDF MP3 DOC XLS into a MS SQL Server Datatable field using VBA code in Access2007
You can do this with streams. This code should help you with the first steps:
Set rs = New ADODB.Recordset
rs.Open "select * from YourTable", Connection, adOpenKeyset, adLockOptimis …
3
votes
Counting occurrences with SELECT DISTINCT, SELECT COUNT and UPDATE in Access
You will need a crosstab (aka pivot) query for that. Try the following SQL and modify to suit your needs:
TRANSFORM Count(MyTable.EmployeeNum) AS AantalVanEmployeeNum
SELECT MyTable …
3
votes
Access.Application.CurrentDb is Nothing?
If you are working with an ADP project, you should use CurrentProject instead of CurrentDB.
…
2
votes
How can I avoid runtime error 3075 when running this Access VBA query?
The SQL you are using is not valid. You must escape the query string when adding a reference to a control. Also, you can get the control directly by it's name. Try the following:
sq …
1
vote
Find all uses of a query in an access application
Like DJ writes: this is the way to go.It works pretty good, it detects all queries, even the ones that are used in comboboxes etc. Although I don't think it will find queries that are used in code. …
2
votes
Recommended way to read and write .ini files in VBA
Here are some code snippets that we use, it should help you to get the idea. These routines use the API calls. Two functions are included to read / write a string setting to a specific section in t …
0
votes
How to disable Macro and Start-Up values while opening the MS Access DB.
On one of the MS support pages I found a reference to the /nostartup switch. Can you try to add that to your startup command?
…
