Jump to content

Attila Kovacs

Members
  • Content Count

    1967
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by Attila Kovacs

  1. Attila Kovacs

    Windows PATH length limit?

    2048 Just for the record. Nothing to do with your question. For file I/O, the "\\?\" prefix to a path string tells the Windows APIs to disable all string parsing and to send the string that follows it straight to the file system. For example, if the file system supports large paths and file names, you can exceed the MAX_PATH limits that are otherwise enforced by the Windows APIs. For more information about the normal maximum path limitation, see the previous section Maximum Path Length Limitation. Because it turns off automatic expansion of the path string, the "\\?\" prefix also allows the use of ".." and "." in the path names, which can be useful if you are attempting to perform operations on a file with these otherwise reserved relative path specifiers as part of the fully qualified path. Many but not all file I/O APIs support "\\?\"; you should look at the reference topic for each API to be sure. Note that Unicode APIs should be used to make sure the "\\?\" prefix allows you to exceed the MAX_PATH.
  2. Attila Kovacs

    Global bookmarks

    That would be cool.
  3. Attila Kovacs

    Delphi Clipboard - WM_CLIPBOARDUPDATE (sent, but no changes)

    MCVE or didn't happen
  4. Attila Kovacs

    FindFirst (Delphi) vs Dir * /s

    if FindFirst('C:\*', faAnyFile, searchResult)=0 then begin yadda yadda yadda: if FindFirst(dirName, faAnyFile, searchResult)=0 then begin yadda yadda yadda, yadda yadda?
  5. Attila Kovacs

    Convert Visual Studio 2012 code to Delphi

    must be a bad weather in the UK
  6. Attila Kovacs

    I'm on the Dark Side... no, really!

    Dark mode is much worse for the eyes. You should adjust the brightness and contrast to relax your pupils.
  7. Attila Kovacs

    Select the entire procedure/function?

    https://youtu.be/SbZXiDE6GO4?t=48
  8. Attila Kovacs

    Thinfinity VirtualUI - cloud-based conversion

    Yeah that's me, and I have a touch screen which I think the problem is. I tried my phone, Chrome on a S23 Ultra, it loads, but the GUI is unusable on that small display.
  9. Attila Kovacs

    Thinfinity VirtualUI - cloud-based conversion

    I've tried both, chrome and IE, the same, (they are actually the same nowadays anyway) I managed to get it working once, but the same error has occurred again. However, it wasn't functioning properly. I couldn't see the entire forms and such... ike there's no HDPI support.
  10. Attila Kovacs

    Thinfinity VirtualUI - cloud-based conversion

    now it's working, no HDPI support?
  11. Attila Kovacs

    Thinfinity VirtualUI - cloud-based conversion

    <o> yes, then I log in and I'm getting an empty site
  12. Attila Kovacs

    Thinfinity VirtualUI - cloud-based conversion

    just an empty page, do I need something on the client side?
  13. Attila Kovacs

    Delphi and "Use only memory safe languages"

    Doesn't matter. It was an example.
  14. Attila Kovacs

    Delphi and "Use only memory safe languages"

    TStringList has 4 other constructors with parameters. This would just pollute the code and cause traffic jams everywhere.
  15. question is, if dfm's are affected too
  16. Report them as false positive, include the exe.
  17. Attila Kovacs

    Delphi Low-code No-code?

    For those who prefer designing an application visually rather than coding it, this could be useful.
  18. Attila Kovacs

    Delphi 12.1 is available

    sorry, not Sherlock but @Rollo62 https://embt.atlassian.net/servicedesk/customer/portal/1/RSS-441 still laughing? 🙂
  19. Attila Kovacs

    Delphi 12.1 is available

    Thanks Lars, that did the trick indeed. I'm still not satisfied with the new system. It's similar as the "new forum" was = lame AF.
  20. Attila Kovacs

    Delphi 12.1 is available

    well, at the end it's an April Fools' Joke indeed.
  21. Attila Kovacs

    Delphi 12.1 is available

    Is this an April 1 joke?
  22. Attila Kovacs

    Delphi 12.1 is available

    I'm rather concerned about how the multiple windows will interact with older plugins and all of my stuff.
  23. Attila Kovacs

    Delphi 12.1 is available

    Wow, from now on, you can open the same file multiple times. That's going to be interesting.
  24. Attila Kovacs

    Delphi 12.1 is available

    that's quite a list
  25. Attila Kovacs

    Regression - Delphi 12 - IsZero()

    I read something in so from you but I can't find it, it was about the whole rtl float handling is rubbish or something like that. Not sure about the details.
×