Viewing 10 posts - 1 through 11 (of 11 total)
SET NOCOUNT ON
December 10, 2009 at 6:58 am
You have made changes to the table since you linked them. Delete the links and relink the tables.
June 20, 2007 at 2:33 pm
In all SQL always qualify the reference, ie. dbo.tablename.
January 18, 2007 at 7:52 am
Public Function Remove_Dbo_()
For Each tdf In CurrentDb.TableDefs
Do While left(tdf.NAME, 4) = "dbo_"
tdf.NAME = Mid(tdf.NAME, 5)
Loop
Next tdf
End Function
November 17, 2006 at 9:42 am
Create a file DSN to link to your SQL Server db. Use the DSN to link to your sql tables, as long as they are named the same as your...
November 16, 2006 at 11:17 am
Some time when the user changes his password ADOM and Novell will not sync and the user will get this error. A reboot resolves the problem.
October 19, 2006 at 6:49 am
Private Sub Form_Load()
If Time() >= #2:09:00 PM# And Time() <= #2:20:00 PM# Then
call TestModule
End If
Application.Quit
End Sub
Make TestModule public and just call it don't use RunCommand
Public Sub TestModule()
July 3, 2006 at 7:32 am
Create a form that loads when the database is opened. Use this code in the form load event. Open the database using scheduler. If you schedule it for 1 am...
June 29, 2006 at 9:28 am
This code uses the file system object to compact an Access database on close if over 35Mb .
Public Sub ShowFileSize(filespec)
On Error GoTo Err_handler
Dim fs As Object
Dim f As...
June 29, 2006 at 9:09 am
Viewing 10 posts - 1 through 11 (of 11 total)