Viewing 15 posts - 16 through 30 (of 52 total)
Have you thought about using ltrim to remove leading spaces, if any?
set contact2.uexfield1 = ltrim(contact1.contact)
Or, am I missing something?
March 21, 2006 at 9:46 am
Go to Tools/Options and unclick "System Objects" and "Hidden Objects" on the View tab.
March 21, 2006 at 9:21 am
If you're not using the username and password for security purposes (if they add their own, it isn't security), but for audit trail purposes, you could just query the machine...
March 21, 2006 at 9:15 am
Ritesh,
The best way to add security to an existing database is to set up a BLANK database with security (joined to the appropriate mdw) then to import your objects...
March 21, 2006 at 9:04 am
Rich, I agree with Phil. I'd to a "linked_tables" table too, if it were my application. But, I don't see any need for an ini file, unless it is for an...
March 21, 2006 at 8:53 am
Are you running it as a manual process or as a scheduled job?
March 21, 2006 at 7:11 am
I save them as vbscript and then run from within VB6 or Access if I need to recreate a package. (Package/SaveAs/Location = Visual Basic File)
March 21, 2006 at 7:09 am
Sure.
The easiest way is to set up the pass-through query then change its SQL and execute it.
If your pass-through is qryPassThrough, then
Function QdEfMe()
Dim qDef As QueryDef
Set qDef = CurrentDb.QueryDefs("qryPassThrough")
qDef.SQL...
March 20, 2006 at 4:36 pm
You can have a startup form with a space for user name and password, and then on the click event of a button loop through the 10 tables and reconnect...
March 20, 2006 at 4:14 pm
Are you using ADO or DAO? The article is referring to ADO. Have you tried
SELECT Nom, Sum(Tarif) AS SumOfTarif
FROM Modale
GROUP BY Nom
ORDER BY Nom;
Thanks,
March 20, 2006 at 3:13 pm
Have you thought about adding a user ID to the table name and passing the tablename to the report as a parameter? So Joe would have a table named
March 20, 2006 at 3:06 pm
Let me rephrase what you said and you tell me if that is correct?
Rephrased:
You have an Access MDB or ADP file on some share. Possibly the 2003 server. When opening that...
March 20, 2006 at 2:06 pm
Hi,
Have you checked your references on the server (from a code window, go to tools/references and look for any missing ones)? Do you have the correct version of mdac...
March 20, 2006 at 12:32 pm
A down-and-dirty alternative is to manually set the first cell in that column as text, by adding an alpha character in the front of the contents and then trying again.
November 25, 2005 at 10:03 am
To get the user's domain in Access, you use the api calls -- here's what I use, call UserNTDomain() to return the domain. To try it, just paste this into a...
March 6, 2005 at 9:07 am
Viewing 15 posts - 16 through 30 (of 52 total)