Jul 29, 2003 #1 pbellc Programmer Joined Jun 6, 2003 Messages 36 Location US What is the syntax for creating an icon for an hta file? and Where in the html code does it go? Thanks.
What is the syntax for creating an icon for an hta file? and Where in the html code does it go? Thanks.
Jul 31, 2003 #2 jemminger Programmer Joined Jun 25, 2001 Messages 3,453 Location US from msdn http://msdn.microsoft.com/workshop/author/hta/overview/htaoverview.asp <HEAD> <TITLE>My Monster Application</TITLE> <HTA:APPLICATION ID="oMyApp" APPLICATIONNAME="monster" BORDER="none" CAPTION="no" ICON="/graphics/creature.ico" SHOWINTASKBAR="no" SINGLEINSTANCE="yes" SYSMENU="no" WINDOWSTATE="maximize"> </HEAD> ========================================================= try { succeed(); } catch(E) { tryAgain(); } -jeff http://www.jeffemminger.com Upvote 0 Downvote
from msdn http://msdn.microsoft.com/workshop/author/hta/overview/htaoverview.asp <HEAD> <TITLE>My Monster Application</TITLE> <HTA:APPLICATION ID="oMyApp" APPLICATIONNAME="monster" BORDER="none" CAPTION="no" ICON="/graphics/creature.ico" SHOWINTASKBAR="no" SINGLEINSTANCE="yes" SYSMENU="no" WINDOWSTATE="maximize"> </HEAD> ========================================================= try { succeed(); } catch(E) { tryAgain(); } -jeff http://www.jeffemminger.com