Jump to content

haentschman

Members
  • Content Count

    216
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by haentschman

  1. [OT] 1068 Hints 1937 Warnings How do you see anything ...the most important things. [/OT]
  2. Ok, Ok... but why can you download it ... and i not?
  3. @Markus Kinzler: Please download the PDF and send it here.
  4. Sorry...It was my fault... NoScript was ON Thanks...
  5. Hi all... I don't have my glasses. Where you see "Delphi High Performance" eBook?
  6. haentschman

    Saving a large project takes soooo Loooonnnnggg..

    Hi... After the delphi restart the packages are enabled again.
  7. haentschman

    Saving a large project takes soooo Loooonnnnggg..

    I think, it was a joke... Google: "delphi disable live bindings" site is not funny. the answer is:
  8. haentschman

    Saving a large project takes soooo Loooonnnnggg..

    Please give a tutorial...
  9. @Uwe Raabe ... it could be so easy.
  10. Hi all... did you ever see when the stackoverflow thread was written?
  11. haentschman

    Is editing posts disabled?

    Hi... BC -> Before Christ
  12. Hi... Definitely yes. The advantage of inheritance is that when you make changes in the base form, you have the same changes in the other forms. Caution: With too many inheritance levels the overview is then again bad. I prefer max 3 levels. Example (picture): Form.ChoiceFilesDialog -> Form.BaseDialog -> Form.Base
  13. Hi... News from Uwe? Did someone contact him via Twitter? PS: I have found the "Favorites" (Berlin) in a picture from his Twitter account. The project is alive...i hope.
  14. haentschman

    Git UI tools

    Hi... TortoiseGit with overlay icons in the explorer and BeyondCompare as Merge/Diff Tool.
  15. Now all we need is a Twitter account... I don't have one.
  16. haentschman

    So Many fdQueries

    [Breainstorming ] Version1: In my applications i have a Interface for every database system. In the interface all queries are created dynamically. The connection is created in this interface. All use this connection... For you: Give your datamodule a public property (example: "CurrentConnection") . Connect all queries with this "CurrentConnection". If you change the "CurrentConnection" with the "LiveConnection" then the queries works with the "LiveConnection". Datamodule.... private FCurrentConnection: TFDConnection; public property CurrentConnection: TFDConnection; ... // All queries Query.Connection := FCurrentConnection; Application... Datamodule.CurrentConnection := FDLiveConnection; // or Datamodule.CurrentConnection := FDTestConnection; Version2: Create separate INI with the connection string for Test / Live. Over a build configuration the application loads his own INI.
  17. haentschman

    So Many fdQueries

    Hi... ...another variant: https://en.delphipraxis.net/topic/219-dimowa®-sql-resource-creator/
  18. ...everybody knows it...i think
  19. Hi all... The last version was imho XE. I've written to Uwe before... without an answer. Everyone who knows Uwe has no contact more... @Uwe Schuster: We need only the SourceCode...please.
  20. Perfect for GIT... But you have to know that you have to learn a lot to use it wisely. Tutorials: https://www.youtube.com/channel/UCO251AKqx8iSssbN66eECLA
  21. Hi... ...how many users? My favorite is GIT. But NOT over the IDE. I use TortoiseGIT. It looks like the explorer with overlay icons. ...and WITHOUT console.
  22. haentschman

    Test Bits in a Byte

    @Kryvich You miss understand. I aggree with you... I am a fan of Enumerations. Better: If you MUST work with it permanently, you want meaningful names. Sorry.
  23. haentschman

    Test Bits in a Byte

    I have an old project in maintenance. This is full of bit operations. If you don't work with it permanently, you want meaningful names.
×