Jump to content

Attila Kovacs

Members
  • Content Count

    2068
  • Joined

  • Last visited

  • Days Won

    28

Everything posted by Attila Kovacs

  1. Attila Kovacs

    I'm looking for these menus in the IDE

    @Kryvich Btw, big thx for the plugin. I didn't know how those shortcuts was calculated 🙂
  2. Attila Kovacs

    I'm looking for these menus in the IDE

    @Kryvich Thx but I will rather add menus to my own expert. I can't decide yet if I need shortcuts for these menus but I'm sure that I would have rather added extra menuitems to the editor popup as binding them to those insane shortcuts. I'm wondering if anyone is aware of the existence of them.
  3. Attila Kovacs

    I'm looking for these menus in the IDE

    I'll consider. However used to GE re-configured many of the default key combos and we didn't make a big friendship. (I'm not using it)
  4. Attila Kovacs

    I'm looking for these menus in the IDE

    My god, those combos...... Nice catch! I'll check them and maybe rebind them. Thx!
  5. Attila Kovacs

    I'm looking for these menus in the IDE

    I've tried to call one of them and all I got was an AV. So I thought either wrong window or not implemented.
  6. Attila Kovacs

    I'm looking for these menus in the IDE

    These would be nice functions if I could find out where they are 😉
  7. Attila Kovacs

    I'm looking for these menus in the IDE

    @Kryvich These actions are defined in the binaries, that's why I'm asking. Are those hidden/unimplemented/edition dependent, etc. or are they anywhere visible .
  8. Attila Kovacs

    I'm looking for these menus in the IDE

    @Kryvich I'm not sure, you were navigating through prev/next difference. I'm looking for the exact actions I've mentioned.
  9. Attila Kovacs

    I'm looking for these menus in the IDE

    Phew, I was trying what you wrote. In the first place, I got a list index out of bounds (xx) in the "Differences view" :D, then "show in difference viewer" does nothing, the form flashes in then disappears and nothing changes. And when I go back to the normal "code" view, I can't save the unit anymore. Unable to rename bla.pas to bla.pas~1~ :DDDD It's just ridiculous.
  10. Attila Kovacs

    Editor Status Bars for Delphi IDE

    I'll wait, I'm on Berlin. Take your time, no rush.
  11. Attila Kovacs

    Editor Status Bars for Delphi IDE

    I could not find any of the words "modified", "disappear", "icons" in this context on this page, but there is a setting in the options to show or hide those icons. At least in older IDEs. I also have those icons off because it takes too much place, so I prefer your solution. Do you offer it for older IDE versions too? Maybe with configurable colors? Publishing the source code?
  12. Attila Kovacs

    New official Embarcadero forums online

    It is. Now. But it has no https, and not much traffic yet.
  13. Attila Kovacs

    http://community.idera.com/ login woes

    And here https://plus.google.com/111330494852358926278/posts/f3GnDud9gbC And here https://en.delphipraxis.net/topic/237-new-in-103-improvements-to-the-options-dialogs/?tab=comments#comment-1861 And nobody complained for criss-cross posting yet 😛
  14. Attila Kovacs

    New in 10.3: Improvements to the Options dialogs

    Wow. Does this search box integrated into the NC area (*sigh*) work without the moderntheme or what .bpl?
  15. Attila Kovacs

    FavIcon

    A bit better quality for the small ones. DP.ico
  16. Attila Kovacs

    Cancel...

    I've got a message 'your previous input was restored blabla', then I pressed clear the editor, and it's gone forever(?).
  17. Well, I did not found the cause yet, but I found that if you do a right-click on the editor then the keyboard-shortcut works again. Would be cool to catch the case which disables or removes this menu and report it.
  18. Attila Kovacs

    How to combine a byte and a word as a hotkey word?

    refresh Primoz' answer and see the last line in his code
  19. Attila Kovacs

    How to know that a file is not used by another program?

    CreateProcess / WaitForSingleObject Ahm, crossplatform! In this case, not! 😉 Btw, what is the cross-platform OpenSCAD calling convention? Is there any? ifdef? Maybe you could place the wait code for the process into those sections?
  20. Attila Kovacs

    Time bomb

    @Kryvich Interesting, I'll check. Thank you!
  21. Attila Kovacs

    Time bomb

    @Johan Bontes if x() is just an example and not part of the problem. It could be xres := x(s,s). And in your y() example I can't see any danger. Result is a separate string which will be copied /(or assigned its pointer?) to S at the end. Which means, the same performance or worse as omitting 'const' in my original post.
  22. Attila Kovacs

    Time bomb

    @Kryvich It would be the same if I omit const for input, am I right?
  23. Attila Kovacs

    Time bomb

    The problem in this case is, that the output string can be the same string as the input is "if x(s, s)", and depending on what x does, it can lead to unpredictable errors. The question is rather how people are dealing with such functions, avoid this pattern totally, doesn't care, changing result with a parameter (which leads to another memory allocation), testing if input is the same as output on the beginning, etc...
  24. Attila Kovacs

    Time bomb

    @Markus Kinzler Examples are welcome. I'm open to learn.
  25. Attila Kovacs

    Time bomb

    @Markus Kinzler @Primož Gabrijelčič if x(s, s) .... and manipulating result on char basis for example
×