Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. edwinjs

    Quick Report Printing Issue - Delphi7

    No. Each Department is provided with a Printer.
  2. edwinjs

    Calling Stored Procedures

    Create temp table in the main procedure with ## (Global) and try it out.
  3. edwinjs

    Quick Report Printing Issue - Delphi7

    Preview works fine so does other reports and prints too. Only this 1 report doesnt print but i can preview and even export to text file.
  4. edwinjs

    Quick Report Printing Issue - Delphi7

    Its just a simple report with Arial font. No Graphics or anything.
  5. edwinjs

    Quick Report Printing Issue - Delphi7

    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.
  6. edwinjs

    Quick Report to Rave Reports

    In Delphi 7 Quick Report package (dclQrt70.bpl) has to be manually added.
  7. edwinjs

    Update with conditional variable

    UPDATE table SET Office = CASE WHEN Department = 'SE' THEN 'ANR' ELSE 'BRU' END WHERE Department in ('SE','AI')
  8. edwinjs

    Paradox versus Sql Server 2000

    http://bdn.borland.com/article/images/29106/ migrating_bde_applications_to_dbexpress.pdf
  9. edwinjs

    Paradox versus Sql Server 2000

    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...
  10. edwinjs

    Paradox versus Sql Server 2000

    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...
  11. edwinjs

    SQL as back-end

    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.
  12. edwinjs

    Having trouble creating code for a VIEW in MS SQL2000. Please help.

    obislavu, Your solution works for 1 LotID
  13. edwinjs

    Having trouble creating code for a VIEW in MS SQL2000. Please help.

    I still think there is a much simpler way to do this.
  14. edwinjs

    Having trouble creating code for a VIEW in MS SQL2000. Please help.

    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...
  15. edwinjs

    Clarification of Programs I Should Be Using

    1. ASP.NET & MS SQL Server 2000 2. PHP & MySQL
  16. edwinjs

    Having trouble creating code for a VIEW in MS SQL2000. Please help.

    Some Sample data with structure of data would help
  17. edwinjs

    DisplayFormat

    The problem was with Infopower TwwDBEdit Component. I changed it to TDBEdit and everything works fine. Lessons Learnt : Use 3rd party tools only when required. Sorry !!! I assumed TwwDBEdit = TDBEdit Thanks for the help anyway.
  18. edwinjs

    MySQL and Delphi, need help

    BDE has some restrictions while updating a Query with Joins. What i would suggest it Have a join Query as a Look-up and use Two Queries to Updated two tables based on the Selection from the look-up query.
  19. edwinjs

    DisplayFormat

    Datatype in SQL Server is "Money" and i am using DBExpress with DatasetProvider and ClientDataset. In clientdataset, it is "TFMTBCDField".
  20. edwinjs

    DisplayFormat

    I have a problem with DisplayFormat in Delphi7. I have set the DisplayFormat for a Numeric Field to #,###,##0.00. if i input 100.15 it becomes 100.00. I wonder why. I am using ClientDataset with SQL 2000 backend.

Part and Inventory Search

Back
Top