how to show in taskbar borderless firemonkey subform

  

my app is have a subform

subform style is
BorderStyle = none

and set EXSTYLE

SetWindowLong(FmxHandleToHWND(Self.Handle), GWL_EXSTYLE, GetWindowLong(FmxHandleToHWND(Self.Handle), GWL_EXSTYLE) or WS_EX_APPWINDOW);
SetWindowLong(FmxHandleToHWND(Self.Handle), GWL_HWNDPARENT, GetDesktopWindow);

how can i show in taskbar firemonkey borderless subform
(vcl is ok)

Comments are closed.