cmombo71
Fri Nov 07 12:02:43 CST 2003
Thanks for the reply Gabriele,
However, I have another question regarding the help. As it stands
right now when I click my help button I am brought to the beginning of
the help file. How do I go about opening the help file to the area in
the application that I am currently in? For example if I am in the
'Singing' area of the app I want help to open to the 'Singing' section
of help.
"Gabriele G. Ponti" <ggponti.at.hotmail.com> wrote in message news:<umxnfKKpDHA.3256@tk2msftngp13.phx.gbl>...
> Hi,
>
> There is a class in the .NET Framework, called Help. It should do what
> you're looking for.
>
> Help Class
>
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwindowsformshelpclasstopic.asp
>
> Regards,
>
> Gabriele
>
> "CJM" <cmombo71@hotmail.com> wrote in message
> news:b9e8b506.0311061113.17542ce3@posting.google.com...
> > What I want to be able to do is open a help file from within my .NET
> > application and have it behave like a help file from any other MS
> > application. If the help button is pressed more than once I only want
> > the one instance of the help to be open.
> >
> > This is what I have now to open the help file:
> >
> > ===============================================
> > Process proc = new Process();
> > proc.StartInfo.FileName = @"winhlp32.exe";
> > proc.StartInfo.Arguments = "-n " + mapId + " " +
> > Application.StartupPath + @"\" + helpFile;
> > proc.Start();
> >
> > ===============================================
> >
> > Any help would be greatly appreciated.