silverfrost Site Admin
Joined: 29 Nov 2006 Posts: 191 Location: Manchester
|
Posted: Fri Feb 18, 2005 3:37 pm Post subject: How do I give my application an icon? |
|
|
The trick here is to use the RESOURCES statement. This passes everything that follows it through to the resource compiler:
Code: | PROGRAM icontest
PRINT *,"This program has an icon"
END
RESOURCES
myIcon ICON c:myicon.ico |
This works for Win32 and .NET
------------
Administrator
Silverfrost Forums |
|