Jump to content

Микола Петрівський

Members
  • Content Count

    68
  • Joined

  • Last visited

Community Reputation

10 Good

Technical Information

  • Delphi-Version
    Delphi Community Edition

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Микола Петрівський

    Delphi 11: Text size too small!

    I am making assumptions based on what I have read in this topic.
  2. Микола Петрівський

    Delphi 11: Text in the Messages Pane is illegible!

    Even if it was fixed, what next? Options dialog? About dialog? There are limits for customization in any program. There is a feature, meant to solve exactly your issue - UI elements being to small, but you do not want to use it. Instead you are trying to use a feature, that is not meant to solve such issues and even not officially supported. And it does not produce the result, you want. So who is guilty in such situation? RAD Studio developers? Really?
  3. Микола Петрівський

    Delphi 11: Text in the Messages Pane is illegible!

    FontSize setting is not officially supported. So there will be some issues with it. Probably they have implemented it for some light tweaking for people, who need different font. And you are exceeding the limitations of their implementation.
  4. Микола Петрівський

    Delphi 11: Text size too small!

    One of the biggest features of Delphi 11 is HiDPI support. Once you set Windows to 125% scaling, IDE will use that as well. Fonts, icons, buttons - everything will be 25% bigger.
  5. Микола Петрівський

    RAD Studio 11 Alexandria is now available

    Looks like you need some Microsoft runtime, to make C++ formatting work.
  6. Микола Петрівський

    Delphi 11: Text size too small!

    And what next, button sizes? You definitely should try to set windows to 125% or 150% scaling and run it that way a few days. It will free you from the need to manually set fonts and icon sizes in each and every app, that you use.
  7. Микола Петрівський

    IDE title bar anomaly?

    Yep, with 125% scaling. Windows 7 with 125% scaling automatically enables so called "XP scaling". This means, that OS ignores app manifest, and forces it to scale itself. But RAD Studio manifest does not declare support for scaling, so Studio tries to do whatever it can, even while it does not support this. So you see such results.
  8. Микола Петрівський

    IDE title bar anomaly?

    Only in Windows 7/8 and older. Since Windows 8.1 you can set different scaling for different screens.
  9. Микола Петрівський

    [out] and [in] in records

    In modern Delphi you can do that like this: TMyRecord = record private FSrcPosition: TPoint; function GetDestination: TPoint; public property SrcPosition: TPoint write FSrcPosition; property DstPosition: TPoint read GetDestination; end;
  10. Микола Петрівський

    serious bug with Indy based code and I9 8/16 cores

    Standalone web servers is not a common type of projects for Delphi. That is why default memory manager was not tweaked for such load. But full version of FastMM4 has lots of different tweaks specifically for multi-threading, so you can customize it as you wish.
  11. Микола Петрівський

    New project with embedded browser

    If you only need to display HTML written by yourself, then THtmlViewer might be an option.
  12. Микола Петрівський

    Conceptual - callbacks that are called from background thread

    Your TСompressor.Create runs in current thread, so you can easily store it as CallerThread. Then, in decompression thread, you can synchronize to CallerThread instead of main GUI thread.
  13. Микола Петрівський

    handling predicate conditions

    It is almost the same as Assert(value <> nil, 'Value is nil!'); Assert(str <> '', 'String is empty!'); Assert(Value.Num > 0, 'Value.Number <= 0!');
  14. Микола Петрівський

    looking for design ideas for an easily editable list

    This is, probably, the simplest possible solution, if you limit yourself to "out of the box" solutions. By the way, TClientDataSet can be replaced with TFDMemTable.
  15. Микола Петрівський

    Generic Command Line Parser for Delphi 10.3.x

    I was expecting to see at least built in support for "--help" and "--version". As it is now, it is not much different to FindCmdLineSwitch.
×