hi,
i try to use SkinButtons()
it seems to work fine but Crash with my HB_FUNC(SHOWFILEPROPERTIES)
it show Dialog like when right-click on Icon of Desktop or Explorer
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() ?
i try to use SkinButtons()
it seems to work fine but Crash with my HB_FUNC(SHOWFILEPROPERTIES)
SHOWFILEPROPERTIES( hWnd, cPath, cFile )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);
}is there a "Dark-Mode Theme" for SkinButtons() ?
can i disable/enable SkinButtons() ?
greeting,
Jimmy
Jimmy