-2
votes
Best way to test a MS Access application?
Data Access Pages have been deprecated by MS for quite some time, and never really worked in the first place (they were dependent on the Office Widgets being installed, and worked only in IE, and o …
0
votes
How would you create a database in microsoft access that is searchable only by certain fields?
This is actually a pretty large topic, and fraught with all kinds of potential problems. Most intermediate to advanced books on Access will have some kind of section discussing "Query by Form," whe …
1
vote
All possible uses for the Application.SysCmd Method
Access itself provides an interface to the full object model of all libraries in use. In the VBE, hit F2 on the keyboard (or, from the VIEW menu, choose OBJECT BROWSER). Type "syscmd" in the search …
0
votes
How do you execute a dynamic SQL Query against MS Access 2003 via VBA?
The answers you've been given and that you seem to be accepting loop through a DAO recordset. That is generally a very inefficient method of accomplishing a text. For instance, this:
…
0
votes
1
vote
Does MS access(2003) have anything comparable to Stored procedure. I want to run a complex query in MS acceess
Perhaps instead of asking if Jet has stored procedures, you should explain what you want to accomplish and then we can explain how to do it with Jet (it's not clear if you're using Access for your …
1
vote
access vba: Runtime error 3734
I don't understand what you're trying to do. Why are you using one DAO recordset and one ADO? This makes no sense at all. If you have saved queries in an Access front end, then even if your back en …
3
votes
Access VBA:To generate a report of result of update query
It's never a good idea to use DoCmd.RunSQL as it generates a prompt (which you have to turn off if you don't want it), and it completes the updates even if errors occur, and doesn't report the erro …
-1
votes
How can I get a value from the update query prompt in Access VBA?
Patrick Cuff proposed this function:
Function RowsChanged(updateQuery As String) As Long
Dim qry As QueryDef
Set qry = CurrentDb.QueryDefs(updateQuery)
qry.Execute
…
-1
votes
String acting abnormally in a For Each loop in VBA code in MSAccess
I have to say the discussion around this question drives me crazy. With ODBC linked tables, you start with bound forms. There is simply no reason to be using pooled connections. If you are hostile …
0
votes
Find the directory part (minus the filename) of a full path in access 97
If you're just needing the path of the MDB currently open in the Access UI, I'd suggest writing a function that parses CurrentDB.Name and then stores the result in a Static variable inside the func …
2
votes
Book Recommendation for Visual Basic
You don't say what kind of experience with Access you already have, but my recommendation is that you learn to use Access interactively to build applications before you start mucking around in code …
0
votes
Non-web SQL Injection
Would someone please post proof-of-context Excel VBA code for SQL injection using a Jet database as the back end? Or demonstrate exactly what parameters could be passed to the code in …
1
vote
Non-web SQL Injection
I'd like to expand on the comment I made above in response to onedaywhen's post outlining how to exploit a SELECT statement in MS Access. Keep in mind that these are not generalized commen …
2
votes
MS Access Application - Convert data storage from Access to SQL Server
Others have suggested upsizing the Jet back end to SQL Server and linking via ODBC. In an ideal world, the app will work beautifully without needing to change anything.
In the real world, y …
