Viewing 15 posts - 211 through 225 (of 595 total)
Here is the original article that describes a method to send email from Access without referencing the Outlook library, it uses the Collaboration Data Objects CDO 1.21 library...
SendObject method fails...
September 23, 2008 at 5:51 am
Back during the transition from Access 97 to 2000, there was a bug in 2000 that prevented using SendObject from sending multiple emails from VBA. At that time I found...
September 19, 2008 at 10:33 am
Vic Rauch (9/18/2008)
September 18, 2008 at 9:43 am
The basic problem is that Access is self-registering, so the file association and the dll's are re-written to the registry every time it opens.
At one point, I had a PC...
September 18, 2008 at 8:54 am
sri_priya123 (8/4/2008)
Could not read definitions; no read definitions permission for table or query 'Emp'
That is a classic "corrupted Access database" message, can you compact & repair the database & then...
August 29, 2008 at 7:48 am
Interesting. I had the "Compact and Repair" problem & applied the hotfix, but it was due to Office, not XP, SP3.
Thanks.
(EDIT: it really was Office, not XP)
August 22, 2008 at 5:05 pm
This is just a thought, but you mentioned multiple columns in the combo boxes. Do the # of fields match the column counts in the combos & are the column...
August 22, 2008 at 8:17 am
This is from the SQL Server 2005 Books Online (BOL):
----
You cannot use TRUNCATE TABLE on tables that:
Are referenced by a FOREIGN KEY constraint.
Participate in an indexed view.
Are published by...
August 15, 2008 at 10:35 am
Replication goes all the way back to at least Access 97, don't remember if 2.0 or 95 had it.
August 14, 2008 at 7:48 am
I agree with Karma, replication is the best choice for syncing two Access databases without writing any code.
The downsides:
Replication adds system tables & fields to your database, so the file...
August 14, 2008 at 7:20 am
No, that's not how SQL Server works.
First, you need to have the SQL Server program installed & running on a Windows server on your network. (If you don't have a...
August 13, 2008 at 6:14 am
Instead of
TRUNCATE TABLE GME_Resident_Errors
can you try
DELETE GME_Resident_Errors
maybe it's a permissions problem.
August 13, 2008 at 5:31 am
My original idea did not work, please see the edited post for the corrections...
August 9, 2008 at 8:47 am
You're starting out with two Access files: FrontEnd.mdb and BackEnd.mdb
BackEnd.mdb holds all the tables
FrontEnd.mdb has the user interface, and has links to the data in BackEnd.mdb
1. Run the SSMA on...
August 9, 2008 at 7:52 am
That is a good point. If you already have links to a back-end file, after the conversion you would have two sets of links - front-end to back-end and then...
August 8, 2008 at 12:20 pm
Viewing 15 posts - 211 through 225 (of 595 total)