Results 1 to 16 of 16

Thread: Adding Help files to project [Resolved]

  1. #1

    Thread Starter
    Addicted Member haihems's Avatar
    Join Date
    Oct 2004
    Posts
    150

    Smile 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

  2. #2

    Thread Starter
    Addicted Member haihems's Avatar
    Join Date
    Oct 2004
    Posts
    150

    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

  3. #3
    Hyperactive Member Lil Ms Squirrel's Avatar
    Join Date
    Nov 2004
    Location
    planet squirrel
    Posts
    494

    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:
    1. 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

  4. #4
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    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.

  5. #5

    Thread Starter
    Addicted Member haihems's Avatar
    Join Date
    Oct 2004
    Posts
    150

    Re: Adding Help files to project

    Hi Mendhak

    Quote 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.

  6. #6
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    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 PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI 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

  7. #7
    Member
    Join Date
    Dec 2004
    Posts
    37

    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.

  8. #8

    Thread Starter
    Addicted Member haihems's Avatar
    Join Date
    Oct 2004
    Posts
    150

    Re: Adding Help files to project

    Quote 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..

  9. #9

    Thread Starter
    Addicted Member haihems's Avatar
    Join Date
    Oct 2004
    Posts
    150

    Re: Adding Help files to project

    Quote 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

  10. #10

    Thread Starter
    Addicted Member haihems's Avatar
    Join Date
    Oct 2004
    Posts
    150

    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

  11. #11
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Adding Help files to project

    Use System.Diagnostics.ProcessStart.

  12. #12

    Thread Starter
    Addicted Member haihems's Avatar
    Join Date
    Oct 2004
    Posts
    150

    Re: Adding Help files to project

    Quote 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

  13. #13
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Adding Help files to project

    Show the code you used.

  14. #14

    Thread Starter
    Addicted Member haihems's Avatar
    Join Date
    Oct 2004
    Posts
    150

    Re: Adding Help files to project

    hi,
    this is the code i used...
    VB Code:
    1. Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
    2.         System.Diagnostics.ProcessStartInfo("C:\helpfile1.chm")
    3.     End Sub
    Think Before Ink

    Visual Studio .NET 2002/.NET Framework 1.0

  15. #15
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Adding Help files to project

    VB Code:
    1. Dim dp As New System.Diagnostics.Process
    2.         dp.Start("C:\test.txt")

  16. #16

    Thread Starter
    Addicted Member haihems's Avatar
    Join Date
    Oct 2004
    Posts
    150

    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
  •  



Click Here to Expand Forum to Full Width