Basic Executable Icon
-
I have completed a .NET C++ project however the icon for the executable is the old DOS icon. How would I make it so that an icon I created would be the executable icon instead of the old DOS icon? Thank you very much. Also, my program gets much of the information needed from text files. Is there a way to bind those text files to the executable as well? Thank you again. :-D
-
I have completed a .NET C++ project however the icon for the executable is the old DOS icon. How would I make it so that an icon I created would be the executable icon instead of the old DOS icon? Thank you very much. Also, my program gets much of the information needed from text files. Is there a way to bind those text files to the executable as well? Thank you again. :-D
pcxboy wrote: I have completed a .NET C++ project A VS.NET project ? If so ,then just go to
Project
menu and thenProperties
and then you will findapp.ico
name asociated with theIcon
property of the project ,there you can replace the icon of the exe itself by yours. -
I have completed a .NET C++ project however the icon for the executable is the old DOS icon. How would I make it so that an icon I created would be the executable icon instead of the old DOS icon? Thank you very much. Also, my program gets much of the information needed from text files. Is there a way to bind those text files to the executable as well? Thank you again. :-D
-
I have completed a .NET C++ project however the icon for the executable is the old DOS icon. How would I make it so that an icon I created would be the executable icon instead of the old DOS icon? Thank you very much. Also, my program gets much of the information needed from text files. Is there a way to bind those text files to the executable as well? Thank you again. :-D
pcxboy wrote: Is there a way to bind those text files to the executable as well? Can they be put into the resource file? Marc My website
Latest Articles: Undo/Redo Buffer Memento Design Pattern -
pcxboy wrote: Is there a way to bind those text files to the executable as well? Can they be put into the resource file? Marc My website
Latest Articles: Undo/Redo Buffer Memento Design Pattern -
pcxboy wrote: I have completed a .NET C++ project A VS.NET project ? If so ,then just go to
Project
menu and thenProperties
and then you will findapp.ico
name asociated with theIcon
property of the project ,there you can replace the icon of the exe itself by yours. -
HA HA HA ha :laugh:. Yes, thats exactly what I did. I couldn't figure out how to do the other suggestions, even the online ones. Also, I decided to turn each text file into its own seperate class :sigh:. Very time consuming and increased the size of the program, but it worked. Thanks for all the help.