Coming soon to BCX Coders

Started by MrBcx, October 20, 2025, 03:05:29 PM

Previous topic - Next topic

Quin

Very nice! Personally I have little to no use for dark mode or DPI-aware apps, but I'm in the minority. Great work!

MrBcx

If you are a real BCX coder and you have a real need for DPI Awareness and Dark Mode in your apps
then take a look at the attached teaser.  Many longtime BCX users know about my Fast File Scan
from many years ago.

By simply adding two $INCLUDE files and adding these two lines inside SUB FORMLOAD makes that app
DPI Aware and Dark Mode.  They are independent of each other.  If you want DPI Aware but not Darkmode
or vise versa, no problem.


    '========== D A R K  M O D E   AND   D P I  A W A R E   ============

    DarkMode_Setup(Form1)
    DPI_Setup(Form1)

    '========== D A R K  M O D E   AND   D P I  A W A R E   ============

    SHOW Form1
    IF AutoRun THEN SendMessage (Button1, BM_CLICK, 0, 0)  ' started with cmdline arguments
END SUB