REGAPP_NoIcon

This forum is for general developer support questions.
Post Reply
User avatar
mritter0
Posts: 214
Joined: Mon Aug 25, 2014 9:41 pm
Location: Bettendorf, IA, USA

REGAPP_NoIcon

Post by mritter0 »

I just noticed that if when registering my application and set REGAPP_NoIcon,TRUE, then the drop down menu in the title bar won't open. The one for Jump to screen and such. It flashes once, then nothing after that.

Code: Select all

if ((appID=IApplication->RegisterApplication(PROJECT_NAME2,
	REGAPP_URLIdentifier,				"abc.com",
	REGAPP_Description,					"my projects",
	REGAPP_NoIcon,					TRUE,
	REGAPP_AppIconInfo,				AppIconInfo,
	REGAPP_FileName,					ProgramComplete,
	REGAPP_HasIconifyFeature,			TRUE,
	REGAPP_HasPrefsWindow,				TRUE,
	REGAPP_CanCreateNewDocs,			TRUE,
	REGAPP_CustomPrefsFileName,			PATH_PREFS,
TAG_END)))
{
Workbench Explorer - A better way to browse drawers
Post Reply