i try to use SkinButtons()
it seems to work fine but Crash with my HB_FUNC(SHOWFILEPROPERTIES)
- Code: Select all Expand view
- SHOWFILEPROPERTIES( hWnd, cPath, cFile )
it show Dialog like when right-click on Icon of Desktop or Explorer
- Code: Select all Expand view
- HB_FUNC( SHOWFILEPROPERTIES )
{
#ifndef _WIN64
HWND hWnd = ( HWND ) hb_parnl( 1 );
#else
HWND hWnd = ( HWND ) hb_parnll( 1 );
#endif
SHELLEXECUTEINFO SHExecInfo;
ZeroMemory(&SHExecInfo, sizeof(SHExecInfo));
SHExecInfo.cbSize = sizeof(SHExecInfo);
SHExecInfo.fMask = SEE_MASK_INVOKEIDLIST;
SHExecInfo.lpVerb = "Properties";
SHExecInfo.lpDirectory = hb_parc(2);
SHExecInfo.lpFile = hb_parc(3);
SHExecInfo.nShow = SW_SHOW;
SHExecInfo.hwnd = hWnd;
ShellExecuteEx(&SHExecInfo);
}
who can you help me to get HB_FUNC( SHOWFILEPROPERTIES ) work with SkinButtons()
is there a "Dark-Mode Theme" for SkinButtons() ?
can i disable/enable SkinButtons() ?