Jump to content

haentschman

Members
  • Content Count

    209
  • Joined

  • Last visited

  • Days Won

    5

haentschman last won the day on November 19 2022

haentschman had the most liked content!

Community Reputation

92 Excellent

Technical Information

  • Delphi-Version
    Delphi 11 Alexandria

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. haentschman

    Use Interbase Developer license on 2 Windows PCs?

    Hi... If you can...change to Firebird. The "mother" of Firebird (many years ago) is Interbase. The licence is free. https://firebirdsql.org/en/server-packages/
  2. haentschman

    Looking for a couple of good "starter" Delphi books

    Hi... https://www.youtube.com/results?search_query=delphi+tutorial+english ...maybe there is something for you.
  3. haentschman

    Print TDBGrid

    ...sorry, it is new for me.
  4. haentschman

    Print TDBGrid

    Hi...😎 ...wrong. 😉 FastReport Delphi Edition... The right way: 1. use a reporting tool (print, export, preview) 2. do not print the visual component (TDBGrid) ... print the data in the dataset 3. design the report 4. finish...😛 FastReport videos (VCL): https://www.youtube.com/watch?v=H6ntcbqF0MU https://www.youtube.com/@FastReportsAcademy ...nothing is quick and easy. 🙄 You have to learn something new every day.
  5. Delphi: Only the subscription expires. The license remains valid.
  6. haentschman

    Encrypt ini file

    Hi... ...encrypt not the file, only the information. 😉 XML like INI: <Password>xbWONK6X9KT/Pq1LFcV+4VRA8tePadM1yL+iVp3hA4rkgkbckH/EG00NYnuCkN22Zyg=</Password> There are several methods of encryption. DEC for example: https://github.com/MHumm/DelphiEncryptionCompendium
  7. haentschman

    D12 Welcome Page

    ...die mit den Bonbons. 😋
  8. haentschman

    D12 Welcome Page

    Hi...😎 https://dwp.gksoft.ch/en/Delphi-Welcome-Page-Plugin.html ..it is my:
  9. haentschman

    Help with Query at run time

    Hi... procedure TfrmDino.BitBtn1Click(Sender: TObject); begin Application.Terminate; end; Terminate is the last option to end the program. With Terminate NO more events are executed. Better to terminate is self.close or close
  10. haentschman

    BDE Installing

    Why BDE with D12?
  11. haentschman

    Help to find database error

    FDquery1.Open(query); //or FDquery1.Open('Select * from DAT2'); ...What about queries with parameters...then that doesn't work. 2 notations with or without parameters...no.
  12. haentschman

    Help to find database error

    Hi...😎 The Query needs the connection. Via ObjectInspector or via code. Check this...😉 FDQuery1.Connection := FDConnection1; // or via ObjectInspector FDQuery1.SQL.Text := query; FDQuery1.Open; // better
  13. haentschman

    Help to find database error

    ...there is a \ missing. "D:\Delphi..." 😎
  14. haentschman

    What is the benefit of sorting the Uses clause?

    Hi...😎 Now is Checkbox = True. Than...is it ok.
×