George Birbilis

Results 153 comments of George Birbilis

Eventually one could contribute an implementation of IFMXSystemApperanceService for Windows, as mentioned at https://quality.embarcadero.com/browse/RSP-37290 and in comments at https://stackoverflow.com/a/67457500/903783

what I was meaning is that FMX has a service to get dark mode info (but not notification for it switching I think) for OS-X, iOS, Android but not for...

actually, I'd expect Embarcadero to port those interfaces back into VCL so that one could evolve their VCL app gradually with such features and eventually either port it or maintain...

btw, they've added a TBufferedLayout now https://docwiki.embarcadero.com/Libraries/Sydney/en/FMX.BufferedLayout.TBufferedLayout

think Avalonia (XAML based) is preparing something for .NET Core. Speaking of XAML, one can combine it with Ammy UI for more simplicity in syntax. Also see Noesis GUI, might...

When you use UWP with C++ you're native already (UWP is COM+ underneath I think). When you use .NET languages with UWP for sideloading apps Visual Studio uses .NET Native...

indeed, need a LICENSE.txt file

guess, could do same as in Windows (if .ini is used on Win)

assuming the app is in Delphi, see https://github.com/checkdigits/delphidarkmode/issues/1 (discussion there on FMX with some useful links, but the repo is for detecting dark mode in VCL)

if you see https://github.com/jeroenpot/SqlHelper/blob/master/Source/Mirabeau.MsSql.Library/SqlGenerator.cs it has in GetParameterValue the following: case SqlDbType.Date: case SqlDbType.DateTime: case SqlDbType.DateTime2: case SqlDbType.DateTimeOffset: var dateTime = ((DateTime)sqlParameter.Value) .ToString("yyyy-MM-dd HH:mm:ss:fff", FormatCulture); retval = string.Format(FormatCulture, "convert(datetime,'{0}', 121)",...