I'm converting an application from VB6 to VB.net 2005. In VB6, the help text
was displayed using this code:
hwndHelp = HtmlHelp(hWnd, "wrp.chm", HH_DISPLAY_TOPIC, 0)
In VB.net, in order for the helptext to work in development mode, I have to
use code like this:
Help.ShowHelp(Me, "..\WRP.chm")
or like this (fully qualified):
Help.ShowHelp(Me, "C:\projects.net\DVSystem\DVSystem\WRP.chm")
In both systems, the file WRP.chm resides in the project folder, along with
the forms. Why do I now have to fully qualify the path to the .chm file when
I didn't before? This seems like it will be an issue when I deploy this
application. Am I missing something?
Thanks.
Archived from group: microsoft>public>vb>deployment