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: *

  • Users: zlaja
  • Order by date
  1. zlaja

    CheckBox and Rave reports

    Hi, Does someone know Is it possible to put a checkBox in Rave report? I am using Delphi 7 and I have a table with Integer fields. If my value is 0 I would like show unchecked value or if my value is 1 checked. Thanks for any suggestion!
  2. zlaja

    e-mail within my application

    Yes you can. You can send it via NMSMTP(delphi5) or IDSMTP(delphi6 and delphi7) delphi5: an exemple: procedure envMsg(msgFrom, msgTo : string); var sj : string; sl : TStringList; begin //msgFrom - sender //msgTo - destination sj := YourSubject sl := TStringList.Create...
  3. zlaja

    FindKey in Tables .dbf

    Hi, Can someone helps me?(I have never worked with tables .dbf). I would like read informations from tables .dbf, but it doesn't work. My code is similar to this: with Table1 do begin ACTIVE := TRUE; IndexName := 'STCLASM1'; FindKey(['10']); E.Text:=...
  4. zlaja

    Access to sql

    I am developping an application in Delphi with a database to reside in Server SQL. What kind of installation do I have at posts using application to have access in my data. Thanks for any help!
  5. zlaja

    Import .dbf file

    Thank MeanGreen! It works!
  6. zlaja

    Import .dbf file

    I tried this statment, it works but I would like put this statment in batch file and execute this every morning automatically to transfer my data from one server to another. If my programme will be prompted with all this questions for format file it will be very unplesant for users. Thanks anyway!
  7. zlaja

    Import .dbf file

    The message is : Microsoft ODBC SQL server driver: string data, right truncation bcp copy in failed. My text file type is - fixed (with delphi I exported my .dbf file to assci file) Yes, I have permission to write in the table.
  8. zlaja

    Import .dbf file

    I would like import data from .dbf file to SQL server. For that I tray to use bulk copy utility but it doesn't work. I exported my .dbf file to ascci file and I use this statment to export this .txt file to Server SQL, but it doesn't work.What is wrong in my statement? Can someone help me? bcp...
  9. zlaja

    create stored procedure at server sql via delphi

    I am working with tables stored at server sql and I created the stored procedures at the server. Can I create my stored procedures by delphi? I appreciate any help! Thank you.
  10. zlaja

    «Socket readln aborted»

    I would like to send an e-mail by SMTP to multiple people at once. There is my code: SMTPenvMsg.Host := '10.10.1.20'; SMTPenvMsg.Port := 25; SMTPenvMsg.TimeOut := 30; if SMTPenvMsg.Connected=false then SMTPenvMsg.Connect; SMTPenvMsg.PostMessage.FromAddress := msgFrom...
  11. zlaja

    report view 2

    I dont want to print all my pages. Indeed, the components of my report are : 1. table component 2. query component 3. group band (header) 4. group band (footer) 5. summary band My master table is the data source for my query with sql instruction: select login, sum(temp) as temp...
  12. zlaja

    Problem with report preview

    Hi, I am finishing my first application in delphi and I have to print my reports. My master table has between 100 000 and 500 000 records and I think there is the problem. Just for preview my report it takes between 5 and 15 minutes. Is it normal? thanks for any help!
  13. zlaja

    export an ascii delimited file to paradox table

    Thank you EricDraven and McMerfy. It works well but for small files. My text files are about 7-8 Mb, and I can have until 30..35 files ( I export each text file to paradox table end after that with SQL statment I put all data in simple table for make the reports). I tried export that using...
  14. zlaja

    export an ascii delimited file to paradox table

    I would like export my ascii delimited file (delimiter is space) to paradox (or dBase table). Can someone helps me?

Part and Inventory Search

Back
Top