Viewing 8 posts - 1 through 8 (of 8 total)
You did not say what version of MS Office you're using, so my example is coming from MS Office XP:
1) Create a simple SELECT query from your linked table/view. Arrange...
October 25, 2005 at 7:34 am
You can also go to this website:
http://www.mvps.org/access/modules/mdl0064.htm
This has a download of an Access add in which is called DSNStripper - it automatically creates the DSNless connection for you. Website...
October 25, 2005 at 7:26 am
Use the In String function - much better at removing unwanted characters. Just pass in the string that contains the unwanted character, then pass in the actual unwanted character to...
August 10, 2005 at 7:34 am
Place this line of code into a module. Then, call this line of code from your update query:
Function cLeft(sVal As String, lLen As Long)
cLeft = VBA.Left(sVal, lLen)
End...
August 5, 2005 at 7:17 am
Jamie:
Since your using version 2002, try using this add-in for Access. It's called DSN Stripper and gives you what's called a DSN-less connection. No more need for ODBC drivers. Here...
June 30, 2005 at 7:32 am
UPDATE tblMyTable
SET Col014 = 7.45
WHERE Col014 IS NULL
March 9, 2005 at 7:10 am
Sometimes I get that message in Access. In your SQL table, create an Auto ID column:
[nAutoID] [int] IDENTITY (1, 1) NOT FOR REPLICATION NOT NULL
This is like creating a column...
March 9, 2005 at 7:04 am
Open your linked table in the Access db...check at the bottom where the record selectors are - make sure that the one on the far right (asterick) is not greyed...
March 1, 2005 at 7:12 am
Viewing 8 posts - 1 through 8 (of 8 total)