Search Results

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

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 …
4
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 …
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 …
1
vote

Access ADP Corupt wont compile

Sometimes it helps to start a new, empty project and then import all forms/reports/modules from the old one. …
0
votes

Code or the control properties, which is better in MS-ACCESS?

I have always used queries and hardly think of a reason not to do so. Except maybe if you want to add custom items (like 'empty') to the listbox or when speed is an issue. After all, there is absol …
0
votes

VBA text box input mask

Input masks in Access cannot be restricted to ranges of values, like with a RegExp. Only way to do this is use some validation (which can be done on a keypress if you want to). …