Jump to content

Attila Kovacs

Members
  • Content Count

    1977
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by Attila Kovacs

  1. Attila Kovacs

    General DB access question -- paging query results

    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.
  2. Attila Kovacs

    dotNet framework 4.5 required for Delphi 10.3 Rio

    Btw. the web installer also created a ...\BDS\19.0 empty key in the registry on a fresh windows install.
  3. Attila Kovacs

    My first Delphi 10.3 impressions

    it's subjective. I like the IDE without skinning better 🙂
  4. Attila Kovacs

    My first Delphi 10.3 impressions

    disable themes and dump modernthemexxx.bpl
  5. Attila Kovacs

    Editor Status Bars for Delphi IDE

    Looks good. I'm still on Berlin 😉
  6. Attila Kovacs

    Access violations when closing the IDE

    I'm not using GE at all, but I can manage the same with 5 minutes of work.
  7. Attila Kovacs

    Strange and Random Access Violations

    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
  8. Attila Kovacs

    Stay-on-top for just our app?

    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;
  9. 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 🙂
  10. 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.
  11. 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)
  12. 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!
  13. 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.
  14. Attila Kovacs

    I'm looking for these menus in the IDE

    These would be nice functions if I could find out where they are 😉
  15. 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 .
  16. 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.
  17. 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.
  18. Attila Kovacs

    Editor Status Bars for Delphi IDE

    I'll wait, I'm on Berlin. Take your time, no rush.
  19. 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?
  20. Attila Kovacs

    New official Embarcadero forums online

    It is. Now. But it has no https, and not much traffic yet.
  21. 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 😛
  22. 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?
  23. Attila Kovacs

    FavIcon

    A bit better quality for the small ones. DP.ico
  24. 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(?).
  25. 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.
×