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 strongm 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. gorepj

    AS/400 access using Delphi

    Install AS/400 client access on your PC and you'll find The AS/400 ADO provider. I make extensive use of AS/400 databases using ADO to great effect. Regards Peter Gore
  2. gorepj

    Replace a space with nothing ???

    But this replaces all occurrences of the space character and not just the leading and trailing ones. Check out strTrimCharLeft and strTrimCharRight from the JCL libraries. www.delphi-jedi.org Peter Gore
  3. gorepj

    delphi databse manual or tutorial

    Check out the Free Database tutorial at http://delphi.about.com/library/weekly/aa010101a.htm it's first rate. Peter Gore
  4. gorepj

    How to find Attached tables in an mdb file

    Use the GetTableNames method of the ADO Connection object. It will populate a stringlist with tables. The second parameter determines if system tables are includedin the list. ADOConnection1.GetTableNames(ListBox2.Items, False); Alternatively, use the GetSchema method. This returns a dataset...
  5. gorepj

    How to export data to Excel or Word

    Use the Export component set from Max Components. You can find it at www.geocites.com/maxcomponents. Peter Gore
  6. gorepj

    how can i use help files with delphi?

    See Application.HelpCommand
  7. gorepj

    Disk In Drive?

    How can I determine if there is a diskette inserted into drive A: without spawning the system error ABORT, CONTINUE,FAIL?
  8. gorepj

    Energy Saving Features

    How can I change the Win98 Energy Saving Features programmatically? Regards Peter Gore
  9. gorepj

    Energy Saving Features

    How can I change the Win98 Energy Saving Features programmatically? Regards Peter Gore
  10. gorepj

    Irregular shaped windows ('Skin' support)

    Have you tried Coolform? It's quality freeware. You ought to be able to find it at the Delphi Super Page. Email me if you need help. Regards peter@gorehome.freeserve.co.uk
  11. gorepj

    Corrupt CDX Indexes

    I am plagued by corrupted indexes under ForPro 2.5a. Applications generate an unhelpful 'variable not found' error message that happen when indexes become corrupted. Inspection of the offending database show no index tag definitions. To recover we have to delete the associated CDX and manually...

Part and Inventory Search

Back
Top