Viewing 15 posts - 31 through 45 (of 51 total)
Thanks Jeff and Sushila for your help. It has pointed me in the direction I need. I was able to get the skeleton of what I need from your pointers.
Many...
August 8, 2005 at 2:08 am
Problem solved - amazed with 93 views no replies received.
The solution is that when a port is opened and closed quickly it remains out of use for 240 seconds. Also...
June 25, 2005 at 4:46 am
Error Message:
Run-Time Error '-2147467259 (80004005)'
[Microsoft][ODBC SQL Serverver Driver][TCP/IP Sockets]
SQL Server does not exist or Access Denied.
This occus after it has entered just short of 4000 entries. It only happens
on...
June 21, 2005 at 10:51 pm
Cleech,
When you change the filtered Combo you are undermining the very filter is operates on.
Can I suggest:
Change to ordinary form with subform display. In the main form create your combo...
June 2, 2005 at 2:34 am
Michael,
@contractid = me![contractid]
Richard
June 1, 2005 at 4:08 am
Michael,
The conversion process from MDB to SQL may have created a different field type. Check that it is a numeric field. Also - in case there are nulls use the...
June 1, 2005 at 4:06 am
Thanks - but I managed to solve it - learnt alot along the way - so a worthwhile exercise.
Richie
May 24, 2005 at 3:43 pm
James,
If he tried from Access then he probably hasn't setup the DSN in ODBC.
Control Panel, Admin, ODBC.
Create the same DSN name as you have saved in yours and it should...
May 24, 2005 at 3:23 am
James,
I keep a generic Pass Tru Query called QExec.
form the following code you will see how it works:
mSQL = "EXEC SP_ADDCUST "
mSQL = mSQL & "'" & MCUSTCODE & "'"
mSQL...
May 24, 2005 at 2:03 am
Change the line of code as follows:
db.Execute "INSERT INTO Subjects (Subject) Values ('" & Newdata & "')"
ie ( ' " & newdata & " ' ) "
Richard
May 24, 2005 at 1:55 am
On the toolbar in design view , there is a properties button. It allows you to specify the ODBC connection string.
One further point is that it asks - Return Records...
May 24, 2005 at 12:56 am
To execute the SP create a Query in Access as a Pass Through Query. Then
Exec sp_ConsolidatedTC
will execute the query. It would help to know the purpose of the SP.
May 23, 2005 at 5:30 pm
MKeast,
Thanks for the above info. I tried your steps but to no avail yet. I will retry again later.
Many Thanks
Richard
May 18, 2005 at 1:37 am
Where can I set the SET DATEFORMAT DMY so that it applies to DTS operation
May 17, 2005 at 6:54 am
Use inline subqueries
SELECT Student.STUDENTID, (select count(classid) from attendance where studentid=student.studentid) AS Classes,
(select count(classid) from attendance where studentid=student.studentid and attended="Present") AS Present,
(select count(classid) from attendance where studentid=student.studentid and attended="Absent")...
May 17, 2005 at 2:05 am
Viewing 15 posts - 31 through 45 (of 51 total)