rc.exe and rcDll.dll localize or copy from the directory:
MyRes.rc edit the Ressources-script file
MyRes.h in the header-file all constants are defined
MakeRes.exe (MakeRes.bat)
Attention possible bugs:
using manifest.exe.manifest in Windows 7 edit the manifest-file and put your program-name. Use the following lines of code anywhere in a module:
Public Declare Sub InitCommonControls Lib "comctl32.dll" () Private Sub Form_Initialize() Call InitCommonControls End Sub
ProgIcon and FileIcon there are 2 different icons
The example-app is a complete MDI-Application MDI means Multiple-Document-Interface. you can learn how to:
make your app international with different languages let the user decide which language is desired
use files in resources
the app has always default proper language-files copy the file from resource to disk let the user edit the language file, and send it back to you
register your own file-type icon connect it with you app and make it double-clickable by using function RegisterShellFileTypes
manage settings: create, edit and delete
manage inprogram-icons for menues or toolbars
menu window properly manage child-windows