Change "TodayCircle" on CalendarGadget to square
Posted: Wed Dec 03, 2008 12:26 pm
Hi,
I've searched for on the forums and none solution. That's the mine:
1. Create a MANIFEST FILE for your application ("application.exe.manifest"). You can copy "VisualDesigner.exe.manifest" from Purebasic folder (with Fred's permission), and change appropiate xml data.
2. Create a RESOURCE SCRIPT FILE ("application.RC")
3. Compile your application with "/resource application.RC" command switch activate.
Now your CalendarGadget sound like squares (on XP and 2003 and perhaps, Vista)
Method #2 - NOT TESTED - Using mt.exe (if you have it on "Program Files\Microsoft Visual Studio 8\VC\Bin")
The mt.exe tool can be used to embed an input file as a native manifest resource into an already-built .exe file.
mt.exe -manifest application.exe.manifest -outputresource:application.exe;#1
That's all guys.
I've searched for on the forums and none solution. That's the mine:
1. Create a MANIFEST FILE for your application ("application.exe.manifest"). You can copy "VisualDesigner.exe.manifest" from Purebasic folder (with Fred's permission), and change appropiate xml data.
2. Create a RESOURCE SCRIPT FILE ("application.RC")
Code: Select all
#define RT_MANIFEST 24
#define APP_MANIFEST 1
APP_MANIFEST RT_MANIFEST "application.exe.manifest"
Now your CalendarGadget sound like squares (on XP and 2003 and perhaps, Vista)
Method #2 - NOT TESTED - Using mt.exe (if you have it on "Program Files\Microsoft Visual Studio 8\VC\Bin")
The mt.exe tool can be used to embed an input file as a native manifest resource into an already-built .exe file.
mt.exe -manifest application.exe.manifest -outputresource:application.exe;#1
That's all guys.