0
votes
Is it safe to run Access 2003 and 2007 at the same time?
It seems to me that the instance of Access you open will inherit the registry settings at the time it is open. So, if you open A2K7, you'll get the registry settings that it writes in its "configur …
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 …
2
votes
Migrate Access 2007 Database Application to SQL Server 2005 using SSMA - Issues…
Assuming that SSMA replaces the tables in your back end with links to the SQL Server, all you need to do is delete the original table links in your front end and import the newly-created t …
1
vote
Disable warning: You copied a large amount of data onto the clipboard
In my experience, you only get this message when you close an application. Are you closing Excel before returning to Access? If so, don't close it and see if you no longer get the message.
…
0
votes
Change Access link from SQL Server to another Access file?
For linking tables, you need to delete them and entirely and recreate them. Using the linked table manager to refresh ODBC links doesn't even work reliably when you're still using ODBC, as there is …
1
vote
Access ADP Corupt wont compile
I don't work with ADPs, but in MDBs, there are differences between these two syntaxes for referring to controls on a form:
Me.MyControl
Me!MyControl
The first …
2
votes
0
votes
Crystal Report Viewer missing icons when hosted in Access
Adding all the DLLs is not going to do anything that dropping the ActiveX control on a form will not already have done. That is, using an ActiveX control automatically creates the appropriate refer …
0
votes
Use Access or MySQL as a backend database
I think you should define what you mean by "distributed DB Application." That term as I understand it would usually put Jet out of the running for the back end.
No one can actually answer y …
2
votes
How to deploy multiuser ms access 2007 DB
Your question seems rather confused to me. You mention a SQL Server, but you don't say your application uses SQL Server for its data storage.
Thus, I can only assume that you have a single …
1
vote
Using VBA to Update a form recordset in Access 2007
I would avoid the .RunCommand version because there are cases where Me.Dirty = False will work and access to the menu commands is prevented.
On the other hand, Me.Dirty has always struck me …
4
votes
How to use VBA to automate several Office applications?
To get started from Access, add a reference to the Excel object library. Then use the object browser to familiarize yourself with how the Excel object hierarchy looks from within Access. It is goin …
0
votes
Form.CurrentRecord=1 and Form.RecordSet.Absoluteposition=-1
You have to place the record pointer on a particular record in the form's Recordset via a MoveFirst or whatever. And the return value appears to be zero-based instead of 1-based.
I can't re …
0
votes
Access 2007: Filtering a report’s results using a drop-down box
You seem to be asking two questions, the last of which is clear to me, but the first is not. The second one is in regard to how to cascade the filter to the subforms. You can do this in one of two …
1
vote
Access - allow updates of data, but only through forms
If you're willing to delve into Jet User-Level Security, you can make your linked tables non-readable by users and use RWOP (Run With Owner Permission) queries to allow editing in the forms. You wo …
