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 gkittelson 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. garylafferty

    Crystal 10 VCL + Delphi 7

    Hi all, I have downloaded the Crystal 10 VCL , and successfully installed this into Delphi. I have added the TCRPE component to my application, and got it working fine on my own PC. However, the application will simply NOT work on any PC which does not have Crytal 10 installed. I have been...
  2. garylafferty

    Can Delphi detect attachment to e-mail and save to a specific director

    Yes, this is possible. Have a look at the following code, you should be able to modify it easily for your own purposes. procedure readmails; var NumMails: integer; outlook: OLEvariant; namespace: OLEvariant; folder: OLEvariant; MailCounter: integer; MailMessage: variant...
  3. garylafferty

    SQL error - 'could not find record'

    I am having a problem with generating a query (making it active), which is giving up the following error message: Could not find record when trying the following code: query99.active:=false; query99.active:=true; while not query99.eof do begin query1.active:=false...
  4. garylafferty

    Error message : "could not find program"

    Hi, YES , I have done both build & compile ... neither gives any error message at all ...
  5. garylafferty

    Error message : "could not find program"

    I have been working on a project all day, and it compiles okay in Delphi(5). When I press F9 to run the program, I get the following error message: "could not find program, c:\gary\delphi5\admin.exe" where admin is the name of the project. I was working on this program earlier...
  6. garylafferty

    Reading a sender's email address from Outlook

    Hi, I have got some code which will read the contents of the Inbox folder from MS Outlook, as follows: var outlook: OLEvariant; namespace: OLEvariant; folder: OLEvariant; MailCounter: integer; begin outlook:=createoleobject('outlook.application')...
  7. garylafferty

    Directorylistbox : moving to a specified sub-directory

    Hi, I have a directorylistbox showing all the sub-directories in my C: drive, and an associated filelistbox showing all the files in the selected directory. How can I move to a specified sub-directory within the directorylistbox, so that the filelistbox will then automatically show all the...
  8. garylafferty

    Rotated Text / Delphi

    Hi all, I am having a problem with a report that I am printing from within a Delphi program using the Crystal Print Engine. I have done this before many times, with no problems. However, the problem this time is with the report file - the report has a piece of text which is rotated through 90...

Part and Inventory Search

Back
Top