By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now!> Is there any way to view the "What's New" without actually installing
> the beta?
Hi Rex,
In TCC:
ACTIVATE "TCC #2" icon=c:\windows\resources\icons\tcc_blu.ico does not update the icon in the window list (@[TAB]) as 4console.dll does.
ACTIVATE "TCC #2" icon=c:\windows\resources\icons\tcc_blu.ico top does not change the icon at all/resets it.
ACTIVATE "TCC #2" top icon=c:\windows\resources\icons\tcc_blu.ico gives the following error message:
=> Usage : ACTIVATE "window" [/R BOTTO...
nickles
> ACTIVATE ICON=[icon] does not update the icon in the window list
> (@[TAB]) as 4console.dll does.
> a) I think, it shouldn't be difficult for you to change the behavior of
> ACTIVATE ICON= to match that of 4console. Why do you insist on the
> current functionality which leaves me with different icons in the
> taskbar and the program list?
> b) Why shouldn't I be able combine options in the ACTIVATE command
> (unlike in other commands)?
Changing this would require *two* icons, as the one in the tab list is a different size.
That's very interesting! I recall now why I ask for the default size icon before the SM_CXSMICON x SM_CYSMICON one ... because the small one, when stretched, looks like crap in the Alt-Tab dialog. Now that I look closely, the default size icon, shrunk to fit the console's title bar doesn't look quite as good (but isn't bad for the TCC/TCMD icons). I'll bet I could find icons that look horrible when shrunk for a title bar.
If I wanted to use two icons, how would I specify one for the Alt-Tab dialog that is different from the one used in the title bar? SetConsoleIcon() seems to affect both.
hIcon = (HICON) LoadImage(hMod, pResourceName, IMAGE_ICON, 0, 0, uFlag | LR_DEFAULTSIZE);
hIcon = (HICON) LoadImage(hMod, pResourceName, IMAGE_ICON, GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON), uFlag);
If you're already using 4console, why do you also need it in ACTIVATE?