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. 1164961

    Urgent: (Delphi) XML parser needed

    hi http://www.destructor.de/xmlparser/download.htm also read the documentation.?t is free. After download to parse you only need (using TXMLScanner): XmlScanner1.Filename:= 'zzz.xml' XmlScanner1.execute; { after this, use the events of XMLScanner1 to get the tags }
  2. 1164961

    Report tool advice

    Hi, Due to my programs requirements I need a report builder component which will be both editable for developers and also it will be easy for program users to modify (at least it must be easy to change the interface and SQL - at a certain point -of the report) the reports for their needs...
  3. 1164961

    How to hold 6 decimal digits without losing precision

    Hi, I have to hold the unit-price column with 6 decimal digits (I live in Turkey and 6 zeros will be extracted from the turkish lira at 1 January 2005).So I certainly need it. I also am using SQL Server 2000. Since I need 6 decimal digits, Currency and BCDField don't help. As I told in my...
  4. 1164961

    Report tool advice

    Hi, Is there any good report building tools that you can advice me? I am using Delphi 5 and BDE.It will be very good if the source code of the tool is also supplied. Thanks in advance Caglar
  5. 1164961

    How to hold 6 decimal digits without losing precision

    Hi, Thanks very much for your help Zathras. I am using dxDBGrid,Delphi 5, TQuery,BDE 5.2. The problem is not related about the grid I guess.Because, assume that I have got a column in my table like that: INVOICE_TOTAL numeric(15,6) and a TFloatField object related with this column...
  6. 1164961

    How to hold 6 decimal digits without losing precision

    Thanks but it doesn't help. ENABLE BCD is already false when I perform those operations.
  7. 1164961

    How to hold 6 decimal digits without losing precision

    Hi, I have columns in SQL server defined as numeric(15,6). However in my program (written in Delphi 5), I cannot insert the exact values in these columns because none of the field types (tfloatfield,tcurrencyfield) can support representing 6 decimal digits exactly. If I use tfloatfield ...

Part and Inventory Search

Back
Top