Jump to content

Die Holländer

Members
  • Content Count

    183
  • Joined

  • Last visited

  • Days Won

    3

Die Holländer last won the day on December 11 2024

Die Holländer had the most liked content!

Community Reputation

53 Excellent

Technical Information

  • Delphi-Version
    Delphi 12 Athens

Recent Profile Visitors

13093 profile views
  1. Die Holländer

    Enable Discussions on github ?

    I would appreciate it if the Indy discussions, along with other third-party components, could remain here on this forum. Since installing these components, I’ve primarily been using them, but I still enjoy following the discussions. If these conversations shift to other platforms like GitHub, I propably would not bookmark them all and visit them.
  2. Die Holländer

    Making both vertical axis visible at all times in TeeChart

    Is it possible to use the Afterdraw event to force the axis to be visible? procedure TForm1.Chart1AfterDraw(Sender: TObject); begin if not Chart1.Axes.Left.Visible then Chart1.Axes.Left.Visible := True; if not Chart1.Axes.Right.Visible then Chart1.Axes.Right.Visible := True; end;
  3. Die Holländer

    AI in the IDE??

    I think nobody dares to talk about ChatGPT here on this forum anymore.
  4. Die Holländer

    [Open Source] Delphi Youtube Downloader

    Silent paws tiptoe, Whiskers twitch in moonlit night— Graceful feline dance.
  5. Die Holländer

    Should I just dive in to GUI programs?

    I view console applications not just as user (prompt) programs, but also as tools for performing tasks that just don’t require a GUI. We have numerous console applications that are often started by a task scheduler or installed as services. These programs are hard to write with scripts alone, which is why we use Delphi and its tools and libraries. (such as FireDac, sFTP and the mORMot HTTPs web server). These applications handle all the automated processes and tasks essential for our company. All the code can of course used in other projects for GUI or console applications.
  6. Die Holländer

    One line of code not quite right

    In Delphi you just declare the unit where the functions you need are declared. For example Remy mentioned BoolToStr https://docwiki.embarcadero.com/Libraries/en/System.SysUtils.BoolToStr So, this function is in the System.SysUtils unit. In Delphi you can access that unit by declare it on top of your code: Uses System.SysUtils Now you can use the BoolToStr function in your code.
  7. Die Holländer

    Should I just dive in to GUI programs?

    Console programming is easy with Delphi. The books will learn you the Delphi (Pascal) syntax and that is one of the most easy to learn of all the programming languages. That was dummzeuch's conclusion already 10 years ago: twm's blog Important : Console with parameters (With a Gui example..)
  8. Die Holländer

    DLL Load Issue

    Its weird, but maybe it is something that is declared into the source of the Chart component. In my projects i managed over the years to get all the 3th party components without source out of the applications, apart from some of the native Windows. I would try to separate the form(s) with the Chart component from the application and continue the conversion of the application to the newer Delphi version. You can always try to compile the chart form as a separate application and create a communication with your main program to display the charts, like using the Windows Message system or creating a DLL.
  9. Die Holländer

    DLL Load Issue

    Can you look into the TDBChart Unit code? I see in my version D12.2 that it is not installed as a default component..
  10. Die Holländer

    Resizing Object Inspector Pane in 12.2p2

    For me its not a big problem. I already working a few months with it and I don't have to change the width of these panels. I noticed that in the debug layout it is working ok but it has also a minimum width.
  11. Die Holländer

    Resizing Object Inspector Pane in 12.2p2

    The only way is to close it by that little pin. Then when you press on the closed inspector tab it slide open and you are able to make it smaller. But i find it nicer to have it open all the time..
  12. Die Holländer

    Resizing Object Inspector Pane in 12.2p2

    Resize inspector.mp4
  13. Die Holländer

    Resizing Object Inspector Pane in 12.2p2

    In my case when i make it large, like half way the screen, then I can make it only serveral times a tiny smaller, untill it reaches that strange minimum width..
  14. Die Holländer

    Resizing Object Inspector Pane in 12.2p2

    I've the same behaviour. (D12 update 2) Also the Palette and Project ones does this. They are on both sides of the screen with the Palette under the inspector. (They use the same splitter) Lucky I saved my IDE desktop with the proper widths, so I can get them back to my default widths. I don't know why, but that doesn't make you dumb..
  15. Bit offtopic but.. Internally, we use OneNote for creating help files and application overviews, such as screenshots of forms with explanations. For us developers, who don’t have dedicated manual writers, OneNote is particularly useful because it can be shared across the network. This allows everyone to contribute additional information and screenshots to the pages. Each page is accessible via a unique GUID, enabling us to link a help menu item in Delphi directly to a specific OneNote page using ShellExecute. Over time, with continuous edits from users, these pages have become very helpful.
×