Viewing 15 posts - 46 through 60 (of 60 total)
:ermm:
Very strange.
The only thing I can think of that might cause that is if you have the SQL table open in Enterprise Manager (eg: RMC on the table-name and select...
March 22, 2009 at 12:55 pm
Not sure I can answer that - but I've had similar issues. Did you change the table design from SQL or Access?
We use a number of Access2003 databases with SQL2000...
March 19, 2009 at 1:20 pm
Seems like Charles' list touches a chord.
I too am surprised at how common SQL injection vulnerabilities (still) are. Having recently implemented an EDRMS system, our supplier provided a small addin...
March 19, 2009 at 1:07 pm
Through VBA you can add a few lines of code to the Report_Open event - for example;
Private Sub Report_Open(Cancel As Integer)
Dim DB As Database
...
February 17, 2009 at 2:14 pm
With a standard Access query you can embed references to a field on an Access form (ie: Forms!FormName!ControlName), but Pass Through queries are sent to the SQL server as written...
February 17, 2009 at 1:21 pm
In an MDB/MDE you can try setting the filter parameters (in the Report properties) - for example;
Record Source: select * from myPassThroughQuery;
Filter: myColumnName=Forms!frmWaterQuality!StartTime
Filter On: Yes
Note - anytime you enter/amend the...
February 17, 2009 at 12:22 pm
We have a fairly large Access application with a SQL2000 back-end (about 120 users) which is one of our core systems - local government to manage properties, rates, and all...
November 21, 2008 at 5:54 pm
To answer the original question - yes, they do seem to be getting worse.
I have been using this site for a couple of years now, and have yet to actually...
November 19, 2008 at 12:30 pm
We have the same problem here - an application that stores RTF data that we want to use in Word mail-merge documents.
We have used two methods to resolve this (both...
September 22, 2008 at 2:22 pm
Hi,
I've had similar problems populating combo-boxes before. Even binding it to a query, rather than using code, can cause the problem.
I have found this usually occurs because data being returned...
September 17, 2008 at 1:39 pm
Hi Pete,
sorry for the delay in responding - I've been trying to work out the bit of VB to do this. If you add the following lines of code somewhere...
August 20, 2008 at 10:21 pm
To use the famous catch-cry,
it depends
(on your personal preferences) ... I tend to avoid using macros in Access (I just don't like them), preferring to write VB code...
August 13, 2008 at 5:42 pm
I would suggest creating a query using NOT IN - especially if there are large volumes of data. This will allow you to produce a unique set of values to...
August 13, 2008 at 5:22 pm
You can sort the list to put ALL at the top using the following query;
SELECT DISTINCT tblCompanies.strCompanyCounty, 1
FROM tblCompanies
UNION
select "All", 0
from tblCompanies
order by 2;
🙂
August 13, 2008 at 4:37 pm
Like SQL views, Access holds details of the database schema and does not recognise SQL changes until the Access tables/views are refreshed.
In an Access MDB/MDE you need to refresh the...
August 13, 2008 at 4:28 pm
Viewing 15 posts - 46 through 60 (of 60 total)