Viewing 15 posts - 31 through 45 (of 61 total)
I found this great write-up on Linked Servers here. After reading it, and thinking that where it is asking for the path to the database, I could put any...
December 27, 2006 at 6:07 pm
Perry, could you explain, even briefly, how to write a view on SQL Server from a table in an Access database.
Thanks!
December 27, 2006 at 8:37 am
Paul,
I don't believe you can work directly with the form's recordset as you have tried. I believe you can only work with a RecordSetClone. Then find the record you want...
December 22, 2006 at 8:57 am
Paul, I have no idea why you are experiencing this behavior, but a workaround would be to save the bookmark, then return to that bookmark after the report has run.
Hope...
December 21, 2006 at 8:26 am
This is just an idea, because I don't know anything about what you are doing. But if I were trying to get an XML file into SQL Server, I think...
December 21, 2006 at 1:01 am
Lucky, the "*" does not seem to make any difference while running the query in Access. I do think Russel hit on it though, as the table that does not...
December 16, 2006 at 12:14 am
When I have a situation like this, that is something happens that I can see can not happen, I do a "Debug.Print pk12_date, current_timestamp, DateDiff("d", pk12_date, current_timestamp)" This will print...
December 6, 2006 at 7:13 am
Be sure you are in the VBA editor before using Help. Within Help, using the Answer Wizard tab, type "PrtMip" and you will see the explanation on how to use...
December 1, 2006 at 8:17 am
It would be good to know exactly what that error message is. I'm going to assume that the error message said something about the Forms!Form Name!Combo Box could not be...
November 20, 2006 at 7:57 am
Annie,
The dd in your datediff code, what is it? Is it a variable that contains the value "d"? Or are you trying to pass a "d" to datediff with the...
November 16, 2006 at 7:34 am
I have no idea what the .pc. format is. Could you explain that better? Also, have you looked on the Microsoft web site to see if they have any help...
October 19, 2006 at 7:10 am
Sorry, but I can't say "Yes." Although Access offers "Data Access Pages" which allow you to create a web based "page" rather than an Access based "form," it is intended...
October 9, 2006 at 8:03 am
Will, here is the SQL for the first query (Name it Query15 for this example):
SELECT Table4.Name, Max(Table4.Amount) AS Amount
FROM Table4
GROUP BY Table4.Name;
Then the second query uses the first query (Query15)...
September 27, 2006 at 12:59 am
Post a message letting the user know the computer is still working. That way the user will know that there is a little more time to wait.
September 26, 2006 at 9:50 am
You will need to format those cells (or columns) within Excel. I know of no way to export the format. What I have done is to format those cells with...
September 26, 2006 at 9:43 am
Viewing 15 posts - 31 through 45 (of 61 total)