-
Content Count
1977 -
Joined
-
Last visited
-
Days Won
26
Everything posted by Attila Kovacs
-
General DB access question -- paging query results
Attila Kovacs replied to David Schwartz's topic in Databases
Which DAC and DBMS? Here is some reading for FDAC http://docwiki.embarcadero.com/RADStudio/Tokyo/en/Fetching_Rows_(FireDAC) Set up a new project and start playing with the options. -
dotNet framework 4.5 required for Delphi 10.3 Rio
Attila Kovacs replied to dummzeuch's topic in Delphi IDE and APIs
Btw. the web installer also created a ...\BDS\19.0 empty key in the registry on a fresh windows install. -
it's subjective. I like the IDE without skinning better 🙂
-
disable themes and dump modernthemexxx.bpl
-
Looks good. I'm still on Berlin 😉
-
I'm not using GE at all, but I can manage the same with 5 minutes of work.
-
Strange and Random Access Violations
Attila Kovacs replied to Ugochukwu Mmaduekwe's topic in RTL and Delphi Object Pascal
it's in the help Note: Dest should point to a location with room for MaxLen + 1 characters, including the null terminator. too bad that the compiler can't detect the out of range -
Look at your video and see how the focus is changing on your application meanwhile you minimize/restore the "other" application. Your SOT (stay on top) window has the initial focus, then your mainform then your SOT again etc.. etc... The same happens at me (Berlin U2), however it will always stay behind the "other" app, but my SOT form comes behind its parent every other time when the "other" app is in the foreground. Now, adding this code to the test app makes it behave every time the same, the SOT form is sent to the back, to the very back, and on activating to the foreground: (I've no clue if hwnd 0 is the correct value to mark it as empty, but you can introduce a boolean for it) It's hard to say more because I can't reproduce it, but it reminds me to the ancient "modal window behind it's parent window" malfunction, which was resolved by @Gert Scholten by setting the popupparent for the modal window. Let me know if you found out something. Btw, is this some Inductively coupled plasma spectroscope? var Form1: TForm1; actvfrmhdl: HWND; implementation {$R *.dfm} uses Unit2; procedure TForm1.ac(Sender: TObject); begin if actvfrmhdl <> 0 then SetActiveWindow(actvfrmhdl); end; procedure TForm1.da(Sender: TObject); begin actvfrmhdl := Screen.ActiveForm.Handle; end; procedure TForm1.FormCreate(Sender: TObject); begin actvfrmhdl := 0; end; procedure TForm1.Button1Click(Sender: TObject); begin form2.show; application.OnDeactivate := da; application.OnActivate := ac; end;
-
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.