IsAppThemed not work in my Vista business.
How resolve?
Many thanks in advance.
IsAppThemed
IsAppThemed
Ciao, best regards,
Ugo
Ugo
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Ugo,
You need to have a main window or dialog already created:
And have this in your RC:
Here it is working fine
You need to have a main window or dialog already created:
Code: Select all
#include "FiveWin.ch"
function Main()
local oWnd
DEFINE WINDOW oWnd
ACTIVATE WINDOW oWnd ;
ON INIT MsgInfo( IsAppThemed() )
return nil
Code: Select all
1 24 "WindowsXP.Manifest"
Dear Antonio,
if I have understood well:
but in my Vista business don't work, is the same with your sample.
if I have understood well:
Code: Select all
FUNCTION TestAppThemed()
LOCAL oDlg, lAppThem := .F.
DEFINE DIALOG oDlg
oDlg:bStart = { || lAppThem := IsAppThemed(),;
MsgInfo( IF( lAppThem, "Vista with Theme", "Vista without theme" ), "Test theme" ),;
oDlg:End() }
ACTIVATE DIALOG oDlg
return lAppThem
Ciao, best regards,
Ugo
Ugo