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

  • Users: gmie
  • 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

    TQ everybody. It help me a lot. If anyone else got another site, I'm very plessure to wait it. //--hey BobbaFet, I like Gorgeous Girls segment. :D --//
  5. 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
  6. 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.
  7. gmie

    SQL + SAVE

    Let me try it first :)
  8. 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)...
  9. gmie

    CALL THE PROCEDURE

    Well I use all units in my project, the error still the same. And for your information frameBiodata is a object(TFrame). What should I do next..?
  10. 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, '...
  11. gmie

    CUT STRING VALUE

    hey..thanks StevenK it work. thanks a lot for your guide .... :D
  12. gmie

    CUT STRING VALUE

    I'm working on it....thanks
  13. 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
  14. gmie

    DATA MODULE

    Thanks guys. It work properly now. TQ
  15. gmie

    DATA MODULE

    ...and Delphi highlight this line := while not Datamodule1.tablecountry.Eof do
  16. gmie

    DATA MODULE

    ok. this is my modified code:= while not Datamodule1.tablecountry.Eof do begin combobox1.Items.Add(Datamodule1.tablecountry.fieldbyname('description').AsString); Datamodule1.tablecountry.Next; end; end; but there are an error as bellow:= Debugger Exception Notification...
  17. gmie

    DATA MODULE

    thanks svanels
  18. gmie

    DATA MODULE

    For : uses DataMod1; Where I should place it?...... after interface or implementation..? Then can U give me reasons why we should placed there...
  19. gmie

    DATA MODULE

    ok schu...let me try first then I shout to U back.... :D
  20. 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...

Part and Inventory Search

Back
Top