tags:

views:

55

answers:

1

Hi,

I want to create one help file for my whole application. and once user press help button next to any input control then appropriate help topic from file should get display. how can i create this functionality in vb.net?

A: 

The .CHM file format (Compiled HTML) is the current format used for help files wit Winforms/WPF .Net application.

There are a variety of ways to create CHM files. I'd suggest checking out this question for more details on how to accomplish this.

For ASP.Net applications, you would need to generate your own help pages.

Dillie-O