Jump to content

Lajos Juhász

Members
  • Content Count

    828
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by Lajos Juhász

  1. Lajos Juhász

    Parnassus Bookmarks for Delphi 11 Alexandria?

    There is no lack of communication in this case. Every time someone asks this question in a Q&A session they give some answer.
  2. Lajos Juhász

    Detect if WebView2 Runtime is installed

    You can inspect the registry as documented here: https://docs.microsoft.com/en-us/microsoft-edge/webview2/concepts/distribution#detect-if-a-suitable-webview2-runtime-is-already-installed
  3. Lajos Juhász

    Parnassus Bookmarks for Delphi 11 Alexandria?

    The newest idea is that the delay has nothing to do with HighDPI but some code integration change. I have no idea why would that delay the release as they still plan to provide it through GetIt.
  4. Lajos Juhász

    How to increase the Delphi Editor line spacing

    File a QP report.
  5. Lajos Juhász

    Google WebP Image Format

    Also
  6. Source code management Source code management (SCM) is used to track modifications to a source code repository. SCM tracks a running history of changes to a code base and helps resolve conflicts when merging updates from multiple contributors.
  7. Lajos Juhász

    Custom component Resource PRINTFORM not found

    Most probably something wrong with JasotComponents.res or JasotComponentsResource.rc. Unfortunately we have no access to those files to inspect.
  8. Languages that use manual memory management requires from the developers to take care about pointers. You have manually to initialize and also to free them. A bit more interesting result is with local variable: program Project1; {$APPTYPE CONSOLE} {$R *.res} uses System.SysUtils; type TDoSomething = class Danger: string; constructor create; function Ghost: boolean; end; var DoSomething2: TDoSomething; procedure MainProc; var DoSomething: TDoSomething; begin WriteLn('DoSomething = ',NativeInt(DoSomething)); if Assigned(DoSomething) then WriteLn('DoSomething is not nil'); WriteLn('DoSomething2 = ',NativeInt(DoSomething2)); DoSomething.Ghost; end; { TDoSomething } constructor TDoSomething.create; begin //FROM HERE I NEVER GO THERE .... AND IF I GO THERE BY WRONG, CLOSE THE PROGRAM !!! writeLn('TDoSomething.create'); end; function TDoSomething.Ghost: boolean; begin try result := true; WriteLn('Here I am, I am a ghost'); except result := false; end; end; begin try { TODO -oUser -cConsole Main : Insert code here } MainProc; ReadLn; except on E: Exception do Writeln(E.ClassName, ': ', E.Message); end; end. DoSomething = 4318856 DoSomething is not nil DoSomething2 = 0 Here I am, I am a ghost
  9. Lajos Juhász

    Quickreport for Delphi 11.1

    If you have a source code for QR 6 you can build it with Delphi 11.1. Unfortunately it doesn't support High-DPI.
  10. Lajos Juhász

    Several F2084 Internal Error on Delphi 10.4.2

    Now with D11.1 I get: [dcc32 Fatal Error] SVGIconImageList.dpk(65): F2084 Internal Error: D33566
  11. Lajos Juhász

    EULA declined installing 11.1 with Network Named license

    It's not required for D11 (at least for me it was smart enough to set gitit to the online mode after installing from the ISO).
  12. Lajos Juhász

    How add a code editor

    DScintilla is a VCL wrapper (maybe there is also an fmx one?)
  13. Lajos Juhász

    Problems with webinar examples

    Most probably the IDE is still using the old packages. Try to locate them and replace with the new one.
  14. Lajos Juhász

    Several F2084 Internal Error on Delphi 10.4.2

    The only way to find out is to open a QC with this screen shot.
  15. Lajos Juhász

    debugging crash

    It should not be that often that the IDE freezes during the debug and then you can just kill the IDE from the task manager it's rare to have to restart the Windows (even when that occurs it's a nice forced break from the monitor). What I've noticed yesterday that for some methods refreshing the local variables windows takes a lot of time a couple of seconds after I press F7 or F8. Unfortunately I failed to create a simple test case thus no QP from me (yet).
  16. Lajos Juhász

    How add a code editor

    You should ask this question in FMX (as the question has nothing to do with Delphi IDE). A short answer is that you would have to implement a component like Synedit (at the moment it is a Windows only). As far as I know there is no such an editor available for cross platform.
  17. Lajos Juhász

    Several F2084 Internal Error on Delphi 10.4.2

    I believe Delphi 11.1 is a largish step forward in stability. I do not work at the moment on the larger project only on a small one but the internal error after debugging that required restart of the IDE is gone (as far as I can see).
  18. Lajos Juhász

    Delphi 11.1 is available

    Ok that makes sense. I saw only the edited post without the direct link to the ISO.
  19. Lajos Juhász

    Delphi 11.1 is available

    Uwe you missed that we should not post the link (it was posted earlier in this thread).
  20. Lajos Juhász

    Delphi Community 64-bit Windows Target?

    In feature matrix there is a support for 64 bit Delphi in the community edition. In Delphi in order to add a 64 bit target you have to right click in the project manager on the node Target Platforms and select Add platform.
  21. Lajos Juhász

    Lockbox missing in 11.1

    Most probably they're still uploading/updating the component list for 11.1. Usually get it is last in the update cycle for a new release.
  22. Lajos Juhász

    Lockbox missing in 11.1

    I can see it in Categories - Components. Lockbox 3 2021.11 and LockBox VCL and FMX 201.09 by Turbopack.
  23. Lajos Juhász

    INI problem

    ..or just the current folder was not the one where the ini file is located.
  24. Another thing you should consider is support for High-DPI. You would have to make several version of the picture in order to have good results in every possible combination of DPI settings. That's the reason I've retired the old login screen with fancy graphics and went back to the classic rectangular one with svg images.
  25. Lajos Juhász

    dbe install for delphi 11

    It's in your registered products download page (we were asked not to share the link in this forum).
×