Viewing 15 posts - 31 through 45 (of 111 total)
If the goal is to change the whole string to upper or lower, you would use UCase or LCase in VBA. (You would not want to use a T-SQL command...
August 25, 2005 at 5:28 pm
Try this KB site search and see what might help you:
http://www.kbalertz.com/sresults.aspx?sw=sql+server+2000+sp3&st=1
Good luck...
Rich
August 25, 2005 at 5:14 pm
Once again, Remi is absolutely correct about the timestamps. In my apps, EVERY table has a timestamp and a single unique primary key. As you have just proven, ff you...
August 25, 2005 at 5:09 pm
Settings
The compare argument settings are:
Constant | Value | Description |
---|---|---|
vbUseCompareOption | -1 | Performs a comparison using... |
August 24, 2005 at 4:15 pm
Search for Instr in the VBA help file. You just need to set the compare option to binary compare. IIRC, the compare constant is something like acCompareBinary, or something like...
August 24, 2005 at 4:01 pm
I suspect you had some corruption in a system table, perhaps related to extended properties, or perhaps related to something else that Access writes into the system tables directly.
It's a...
August 22, 2005 at 2:55 pm
To be a bit simpler about my first suggestion:
Just create a new ADP and connect to your databse. Then try to open up the problem tables. If it works in the...
August 22, 2005 at 12:11 pm
Sounds like your ADP client is corrupted. There may be properties (such as the ones that control the column widths and orders in the datasheet) that are stored in the ADP itself that...
August 22, 2005 at 12:05 pm
Without knowing how you are doing the import, it is difficult to respond. I have 2 thoughts:
1) If you store the date as text in your MDB, you will have...
August 19, 2005 at 4:02 pm
I just ran a trace to test RecordSourceQualifier. Looks like it does nothing at all. And the SQL editor doesn't use it either. In fact, the SQL editor just deletes...
August 19, 2005 at 9:38 am
Also, I was always suspicious of the RecordSourceQualifier property. I'm still not sure that it really does anything.
The whole issue is strange, since I don't have that problem when I...
August 19, 2005 at 9:15 am
"RecordSourceQualifier property doesn't appear on the user machine."
Is it possible that the user is using an older version of Access? That type of version conflict can be a serious problem.
August 19, 2005 at 9:11 am
"the existence of this platform is really suspect in later versions of MS access."
Karim, this is a baseless rumor started by one particular well-known newsgroup poster. I have not heard...
August 19, 2005 at 7:57 am
Remi, That's a very nice piece of code. Thanks!
Paul, just to add a bit to Remi's comments:
Each Access form has a property called RecordSourceQualifier. This is the default object...
August 18, 2005 at 4:57 pm
Remi is correct. Furthermore, you should never distribute an ADP. In short:
ADP = Source Code
ADE = compiled version for distibution
Forget about the VBA password. It's a joke that takes 5...
August 18, 2005 at 4:40 pm
Viewing 15 posts - 31 through 45 (of 111 total)