-
Content Count
2068 -
Joined
-
Last visited
-
Days Won
28
Everything posted by Attila Kovacs
-
I'm looking for these menus in the IDE
Attila Kovacs replied to Attila Kovacs's topic in Delphi IDE and APIs
@Kryvich Btw, big thx for the plugin. I didn't know how those shortcuts was calculated 🙂 -
I'm looking for these menus in the IDE
Attila Kovacs replied to Attila Kovacs's topic in Delphi IDE and APIs
@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. -
I'm looking for these menus in the IDE
Attila Kovacs replied to Attila Kovacs's topic in Delphi IDE and APIs
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) -
I'm looking for these menus in the IDE
Attila Kovacs replied to Attila Kovacs's topic in Delphi IDE and APIs
My god, those combos...... Nice catch! I'll check them and maybe rebind them. Thx! -
I'm looking for these menus in the IDE
Attila Kovacs replied to Attila Kovacs's topic in Delphi IDE and APIs
I've tried to call one of them and all I got was an AV. So I thought either wrong window or not implemented. -
I'm looking for these menus in the IDE
Attila Kovacs replied to Attila Kovacs's topic in Delphi IDE and APIs
These would be nice functions if I could find out where they are 😉 -
I'm looking for these menus in the IDE
Attila Kovacs replied to Attila Kovacs's topic in Delphi IDE and APIs
@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 . -
I'm looking for these menus in the IDE
Attila Kovacs replied to Attila Kovacs's topic in Delphi IDE and APIs
@Kryvich I'm not sure, you were navigating through prev/next difference. I'm looking for the exact actions I've mentioned. -
I'm looking for these menus in the IDE
Attila Kovacs replied to Attila Kovacs's topic in Delphi IDE and APIs
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. -
I'll wait, I'm on Berlin. Take your time, no rush.
-
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?
-
New official Embarcadero forums online
Attila Kovacs replied to Lars Fosdal's topic in Community Management
It is. Now. But it has no https, and not much traffic yet. -
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 😛
-
New in 10.3: Improvements to the Options dialogs
Attila Kovacs replied to David Millington's topic in Delphi IDE and APIs
Wow. Does this search box integrated into the NC area (*sigh*) work without the moderntheme or what .bpl? -
A bit better quality for the small ones. DP.ico
-
I've got a message 'your previous input was restored blabla', then I pressed clear the editor, and it's gone forever(?).
-
Ever wondered why Shift+Ctrl+Alt+P (Sync Prototypes) sometimes stops working?
Attila Kovacs posted a topic in Delphi IDE and APIs
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. -
How to combine a byte and a word as a hotkey word?
Attila Kovacs replied to KodeZwerg's topic in Windows API
refresh Primoz' answer and see the last line in his code -
How to know that a file is not used by another program?
Attila Kovacs replied to Juan C.Cilleruelo's topic in Cross-platform
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? -
Time bomb
Attila Kovacs replied to Attila Kovacs's topic in Algorithms, Data Structures and Class Design
@Kryvich Interesting, I'll check. Thank you! -
Time bomb
Attila Kovacs replied to Attila Kovacs's topic in Algorithms, Data Structures and Class Design
@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. -
Time bomb
Attila Kovacs replied to Attila Kovacs's topic in Algorithms, Data Structures and Class Design
@Kryvich It would be the same if I omit const for input, am I right? -
Time bomb
Attila Kovacs replied to Attila Kovacs's topic in Algorithms, Data Structures and Class Design
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... -
Time bomb
Attila Kovacs replied to Attila Kovacs's topic in Algorithms, Data Structures and Class Design
@Markus Kinzler Examples are welcome. I'm open to learn. -
Time bomb
Attila Kovacs replied to Attila Kovacs's topic in Algorithms, Data Structures and Class Design
@Markus Kinzler @Primož Gabrijelčič if x(s, s) .... and manipulating result on char basis for example