One of my Quick Report in my application does not print in certain computers. Other reports print and even word & excel is printing. Just this 1 report is not printing on few computers, but it prints on my computer.
Steven is 100% Right. Unless you change the logic to suit Client / Server, performance will suffer and some times the application hangs. I had this problem (5 years back) of changing paradox to SQL Server. More over BDE is no more supported by Borland either ADO / DBExpress is the way to go...
Well, You should avoid using table components while using SQL Server instead use TQuery with "where" clause to restrict data and you logic will change substancially while converting it to Client / Server. Unless you do that you will have perfomance degradation.
One more thing !! why...
I have little access knowledge. But I think you link SQL Server Tables to your Access Database and the data will still remain in SQL Server and all your forms and view can use the linked tables and views.
SELECT A.* From
(SELECT WorkOrderLot.LotID, TravelerLot.TravLotID, Process.ProcNum
FROM TravelerLot INNER JOIN WorkOrderLot
ON TravelerLot.LotID = WorkOrderLot.LotID
INNER JOIN Process ON TravelerLot.CurrentProcID = Process.ProcessID) A
Inner Join
(SELECT...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.