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 TouchToneTommy 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: gmie
  • Content: Threads
  • Order by date
  1. gmie

    HOW TO SAVE REPORT IN QREPORT

    Hello guys.... Can somebody teach me how to Save Report on AfterPreview events as bellow:- procedure TfrmPrintReferral.qrReferralAfterPreview(Sender: TObject); begin //--How to Save Report here--// end; Please help me. TQ
  2. gmie

    HOW TO SAVE REPORT IN QREPORT

    Hello guys.... Can somebody teach me how to Save Report on AfterPreview events as bellow:- procedure TfrmPrintReferral.qrReferralAfterPreview(Sender: TObject); begin //--How to Save Report here--// end; Please help me. TQ
  3. gmie

    COPY TIMAGE PICTURE

    Hello guys..... I load picture into TImage like this.... Image1.Picture.LoadFromFile('D:\people.bmp'); and then I draw(do the sketching) on this picture. All this work ok. BUT know I want COPY everything(people.bmp and my sketching) in the Image1 to another TImage, Image2...... How to do...
  4. gmie

    SOURCE CODE

    Hello guys.. Can everybody give me url that provide Delphi source code or sample program using delphi (with source code) where by I can take/download it as my samples/references. Plz help me.... TQ Merry Christmas and Happy New Year
  5. gmie

    SEKTCH

    Hello all.. How to draw line on TImage(not just stright line). We can use mouse to draw/sketch line on it. Please help me on this.
  6. gmie

    SQL + SAVE

    Hello all... I have a problem here related to database. I try to save data from form into MySQL. Here my code procedure TForm1.Button1Click(Sender: TObject); var idid, addresss, dsql: string; begin idid := id.Text; addresss := address.Text; showmessage(idid)...
  7. gmie

    CALL THE PROCEDURE

    Hello guys.... I have a problem here. Here my code.... procedure LoadPMINOData; begin DataModule_SP.QueryLookup.SQL.Clear; sSQL := 'Select distinct (rg_person.current_icno)scurrent_icno, (rg_person.old_icno)sold_icno, (rg_person.date_of_birth)sdate_of_birth, '...
  8. gmie

    CUT STRING VALUE

    Hello guys... I have a string DOB. It value is 12/12/1975. What I want to do right now is to take value 1975 and put in another string named AGE. It mean string AGE will contain 1975. So how to take value 1975 from string DOB and put it in string AGE. Plz somebody....... TQ
  9. gmie

    DATA MODULE

    Hello guys.. I need help to transfer TTable and TDataSource from form to Data Module. This is my code to generete item into TCombobox:= procedure TForm1.FormCreate(Sender: TObject); begin while not TableCountry1.Eof do begin...
  10. gmie

    CONNECTION STRING FOR MYSQL

    Hello there.. Can somebody give me the Connection String for my database (MySQL) in order to run database operation(save, delete, sort and so on). Please help me on this. Just the connection string.... TQ
  11. gmie

    CREAT DATABASE

    Hello guys... How to run MS-Access and then creat table and field. TQ
  12. gmie

    ADD DATA TO MS-ACCESS

    Hello guyss.. How to save/add data from TEdit into database MS-Access? What tools should I have? For example, I got TEdit1 and TEdit2 and MS-Access field(Field1 and Field2). So how to save text in TEdit1 into Field1 and TEdit2 into Field2. Plz help me.
  13. gmie

    UNLOAD FORM

    Hello guys.. How to unload form. Example, when commanbutton1 is click then form2 will show but in same time form1 is unload(not just hide) from memory. TQ

Part and Inventory Search

Back
Top