dll + help files

  • Thread starter Thread starter Aris
  • Start date Start date
A

Aris

1. How can I show the help file of an application when the
user presses Start->Help?

2. How can I move the dll files of a project to \Windows
via an INF file?

Thanks in advance
 
1. Cannot be done in .NETCF. Windows sends a specific message (WM_HELP) to
the active window when the item is tapped, however this is not exposed
within .NETCF so there is no way to test for the message. The workaround is
to use a menu or button to launch your help content.

2. The INF file format uses an number of constants to define output
directories, by default all files are placed in your applications folder
(%InstallDir%), however you can use %CE2% which represents the \Windows
folder.

Peter
 
Back
Top