Jump to content

Attila Kovacs

Members
  • Content Count

    1944
  • Joined

  • Last visited

  • Days Won

    25

Everything posted by Attila Kovacs

  1. Attila Kovacs

    Parnassus Bookmarks for Delphi 11 Alexandria?

    No. I'm talking about Plugins for Parnassus itself.
  2. Who is Jim? And why are you ppl. answering to a request to Jim?
  3. Attila Kovacs

    Parnassus Bookmarks for Delphi 11 Alexandria?

    I did not like its stack based bookmarks as those were caret bookmarks AFAIR. So I wrote a plugin for Parnassus bookmark which turns the normal bookmarks to stack-bookmarks. Sadly the plugin API is somewhat limited so the plugin not a beauty, lot of workarounds. The only drawback it has, on closing and opening files with active bookmarks, there could be some interference which occurs sometimes. But it works for me, I'm only using only one shortcut to add/remove bookmarks, it's the ctrl-shift-1. If the bookmark "1" is nearby when I press ctrl-shift-1, it moves the bookmark, if I press it on the bookmark "5", it deletes 1-4 and 5 becomes 1 (cuts the snake) On every new "1" bookmark the others are incremented. etc... Now @David Millington gave away his plugin to embarcadero and they removed its plugin support officially. (Yes, plugin in plugin) The Plugin API was removed with its manual and its examples. Perhaps nobody knows anymore it existed. So I think there will be another 60 Years needed to have a bookmark for Delphi which makes sense. This 0-9 on every file is somewhat 80's. They should hire more innovative ppl. younger than 65. Sorry guys, but it's true.
  4. Attila Kovacs

    Floating Form Designer option gone in Delphi Alexandria?

    I googled it for you https://blogs.embarcadero.com/new-for-the-ide-in-rad-studio-10-4-1/
  5. Attila Kovacs

    How to manage feature changes during release cycle?

    Can we see a "branch" example with 10+ projects having own code, shared code, 10+ major 3rd party libs, tons of binary data, whatever I forgot to mention. Asking for a firend.
  6. Attila Kovacs

    Why empty dynamic arrays = NIL?

    This is the yellow brick road to unpredictable behaviors depending on the uses list. Use "TMyStringList", don't try to rewrite the RTL.
  7. Attila Kovacs

    Regex help please..

    EMAIL_REGEX = '^((((?>[a-zA-Z\d!#$%&''*+\-/=?^_`{|}~]+\x20*|"((?=[\x01-\x7f])' + // '[^"\\]|\\[\x01-\x7f])*"\x20*)*(?<angle><))?((?!\.)' + // '(?>\.?[a-zA-Z\d!#$%&''*+\-/=?^_`{|}~]+)+|"((?=[\x01-\x7f])' + // '[^"\\]|\\[\x01-\x7f])*")@(((?!-)[a-zA-Z\d\-]+(?<!-)\.)+[a-zA-Z]' + // '{2,}|\[(((?(?<!\[)\.)(25[0-5]|2[0-4]\d|[01]?\d?\d))' + // '{4}|[a-zA-Z\d\-]*[a-zA-Z\d]:((?=[\x01-\x7f])[^\\\[\]]|\\' + // '[\x01-\x7f])+)\])(?(angle)>))(;\S)*)+$'; eventually
  8. $1A is ctrl-z, it's the end-of-file marker
  9. Attila Kovacs

    D10.4.2 weirdness since recent Win 10 update

    I don't need windows update to reproduce that.
  10. Attila Kovacs

    Add Method dialog layout in Delphi 11 Alexandria

    @Uwe Raabe I see. It's the forum/browser/whatever then. brrr
  11. Attila Kovacs

    Add Method dialog layout in Delphi 11 Alexandria

    even if you would buy it for Uwe, I'm not sure he want to link all the devex* stuff to MMX :DDDD
  12. Attila Kovacs

    Add Method dialog layout in Delphi 11 Alexandria

    this is the pic from PP https://en.delphipraxis.net/uploads/monthly_2021_09/image.png.c710aed0ba6f015e4ee93dd9a8f3d893.png wget both and compare
  13. Attila Kovacs

    Add Method dialog layout in Delphi 11 Alexandria

    this is the pic the forum embedded: https://en.delphipraxis.net/uploads/monthly_2021_09/image.png.710f98297e699378bb11d3076d428ab4.png this is a blurry pic, should be rendered the same way as on my pc
  14. Attila Kovacs

    Add Method dialog layout in Delphi 11 Alexandria

    No. I'm referring to the picture itself. It's blurry, it's obvious if you can see. Look at Peter's screenshots, they are crisp. Why the difference? I observed this earlier too, also mentioned it but never got any reaction. Also, MMX and GE having a bunch of mixed forms in font face, size and even "scaled=true/false".
  15. Attila Kovacs

    Add Method dialog layout in Delphi 11 Alexandria

    @Uwe Raabe Why is your screenshot blurry? Like you were not in DPI Aware mode.
  16. Attila Kovacs

    RAD Studio 11 Alexandria is now available

    hm, is there a new, 3rd installer type available? Manual hacking?
  17. Attila Kovacs

    Anybody changing FileVersion directly in dproj file?

    setting the version is just one thing in the build process... there are so many other things you can automate.. even with just some shellscripts
  18. Attila Kovacs

    Replace default code template?

    AFAIR they disappeared every time I installed an update, I don't know, could have been a one-time issue.
  19. Attila Kovacs

    Replace default code template?

    I've multiple template dirs which I duplicate for the new (test)projects. There is life outside the IDE too.
  20. I'd say do it like the competitors, doesn't matter if it's right or not. It will be interchangeable.
  21. Attila Kovacs

    Resource Hacker

    got it since 3.4.0 ~2002 😉
  22. Attila Kovacs

    Using Attributes in class declarations

    Attributes are about that, that you don't have to have form props/code. It's like templating for recurring things. Like Lars' grids or in my case my ORM's. It has a bunch of benefits, like I can easily include them anywhere without any dependency. Also, for the grid example, it can be the default layout which you could overload with custom settings but on deleting them or on a new install, you don't have to deal with the initial data. Also, attributed things can be tested very good. Also, on many parameters it's ugly AF, I'm using JSON strings on complex attributes. Which are very error prone, but can be tested very easily. Yes, it's also not perfect and misses a lot of things like a NameOf(), but we are used to waiting centuries for cookies. No... Yes... Whatever... It's longer than green.
  23. Attila Kovacs

    Delphi compatibility with Windows 11?

    It was MS who disabled using TPM for Home versions of W10 now its mandatory from 11? 😉 muha
  24. Attila Kovacs

    Q for MAPI Expert

    They won't as MAPI is officially discontinued. I'll put it on github though.
×