|
-
Jan 18th, 2005, 09:58 PM
#1
Thread Starter
Addicted Member
Adding Help files to project [Resolved]
Hi all,
I want to add Help, FAQ, About us & contact us for my project. For this what can i do? I've word document of FAQ's. Is this enough for me to have FAQ in my project, by adding up any link to this word file????? Frankly dont know how to add the help files?? Please help me!!! appreciate any codes or helpful links...
Regards,
hems.
Last edited by haihems; Feb 25th, 2005 at 03:07 AM.
Reason: resolved
-
Jan 19th, 2005, 04:00 AM
#2
Thread Starter
Addicted Member
Re: Adding Help files to project
Hi,
hope you all have understand what i'm asking.
Actually I've a menu called Help in my project, in that i'm having Product Help & FAQ. For FAQ and Help on my product, i'm having the stuff as a Word document..I dont know how to include these in to my project.
Is there any way to directly include the word document as a Help file or else i've to do something to get it as Standard Help files available in all Microsoft products...Worrying about this...Needed help as soon as possible... 
Regards,
Hems
-
Jan 19th, 2005, 04:22 AM
#3
Hyperactive Member
Re: Adding Help files to project
I would convert the FAQ to an html file and then in the menu event handler use:
VB Code:
System.Diagnostics.Process.Start("C:\MyApp\FAQ.htm")
to run the file. This means your don't have to consider whether or not your end users have word installed.
Does this help?
Be who you are and say what you feel, because those who mind don't matter and those who matter don't mind.
Dr. Seuss 
-
Jan 19th, 2005, 11:49 AM
#4
Re: Adding Help files to project
For a more professional way, you can use CHMs or create MS Help 2.0 files. CHMs are better. Download the Help authoring workshop from MS for CHMs. Or use some tool like RoboHelp or DocToHelp.
-
Jan 20th, 2005, 10:01 PM
#5
Thread Starter
Addicted Member
Re: Adding Help files to project
Hi Mendhak
 Originally Posted by mendhak
For a more professional way, you can use CHMs or create MS Help 2.0 files. CHMs are better. Download the Help authoring workshop from MS for CHMs. Or use some tool like RoboHelp or DocToHelp.
I'm going to use the CHM files as ur advice..Hope i can download the workshop for Help from MS..but what about the other 2 tools, RoboHelp and DocToHelp..
Regards,
Hems.
-
Jan 20th, 2005, 11:10 PM
#6
Re: Adding Help files to project
I have RoboHelp 2000 at work and the new version costs $999.00.
Too much for home users.
Download MS HTML Help Workshop - Free.
HTH
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum. 
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it! 
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6 
-
Jan 20th, 2005, 11:35 PM
#7
Member
Re: Adding Help files to project
How do you set the default CHM # to use for all your forms so that when users hit F1 it goes to the right page?
I am used to VB6.
-
Jan 21st, 2005, 01:16 AM
#8
Thread Starter
Addicted Member
Re: Adding Help files to project
 Originally Posted by RobDog888
I have RoboHelp 2000 at work and the new version costs $999.00.
Too much for home users.
Download MS HTML Help Workshop - Free.
HTH
Thanks RobDog888...I'll download MS HTML HelpDownloads first..come again if there is any doubts..
-
Feb 24th, 2005, 04:47 AM
#9
Thread Starter
Addicted Member
Re: Adding Help files to project
 Originally Posted by VBNetCoder
How do you set the default CHM # to use for all your forms so that when users hit F1 it goes to the right page?
I am used to VB6.
Hi,
To get the Help page by hitting F1, use the F1help provider component...
Set its HelpnameSapce property to the specified .chm file location. Paste ant control and change its Help navigator property to Index or Topic or what ever you want...now run the program, by hitting F1 ,the help file will show to you
Regards,
hems.
Think Before Ink
Visual Studio .NET 2002/.NET Framework 1.0
-
Feb 24th, 2005, 04:49 AM
#10
Thread Starter
Addicted Member
Re: Adding Help files to project
hi,
Anybody know how to get the .chm file to be shown when clicking any button or menu item?
Thanks
Hems.
Think Before Ink
Visual Studio .NET 2002/.NET Framework 1.0
-
Feb 24th, 2005, 04:53 AM
#11
Re: Adding Help files to project
Use System.Diagnostics.ProcessStart.
-
Feb 24th, 2005, 10:39 PM
#12
Thread Starter
Addicted Member
Re: Adding Help files to project
 Originally Posted by mendhak
Use System.Diagnostics.ProcessStart.
Hi,
I couldn't find the processStart under Diagnostics...its only ProcessStartInfo. WHen i tried to use it, it gave me an error message as "ProcessStartInfo cannot be used as an expression"...Any help on this issue greately appreciated. Thanks.
Regards,
Hems.
Think Before Ink
Visual Studio .NET 2002/.NET Framework 1.0
-
Feb 24th, 2005, 11:56 PM
#13
Re: Adding Help files to project
-
Feb 25th, 2005, 12:38 AM
#14
Thread Starter
Addicted Member
Re: Adding Help files to project
hi,
this is the code i used...
VB Code:
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
System.Diagnostics.ProcessStartInfo("C:\helpfile1.chm")
End Sub
Think Before Ink
Visual Studio .NET 2002/.NET Framework 1.0
-
Feb 25th, 2005, 12:43 AM
#15
Re: Adding Help files to project
VB Code:
Dim dp As New System.Diagnostics.Process
dp.Start("C:\test.txt")
-
Feb 25th, 2005, 03:05 AM
#16
Thread Starter
Addicted Member
Re: Adding Help files to project
Hi,
Cool!! Its working now...thanks...
Regards,
Hems.
Think Before Ink
Visual Studio .NET 2002/.NET Framework 1.0
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|