CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6

Threaded View

  1. #1
    Join Date
    Dec 2009
    Location
    Kathmandu,Nepal
    Posts
    168

    Cool Open Help file......

    Hello! Here I have a project! what I want to do is open .chm help file if i click on the Button.
    Let me explain what I have Done. I have created a resource folder where i have placed desired help file. I have have used folowing code
    Code:
    private void button1_Click(object sender, EventArgs e)
            {
                System.Diagnostics.Process.Start(@"global::Open_HelpFile.Resource1.SkinCrafter_Net");
            }
    this returns with runtime error of access is denied..is there any way of solving this Problem??
    If no Please help me out here...I want to later create Installer so that that help file installs with the project and open when placed in any folder....

    PS..Arjay earlier gave me an idea to do the same...i understood your idea but hard time implementing it..and I continued this because i felt so close to succeed because if found the exact file but didn't had correct permission to open it.....
    Attached Files Attached Files
    Last edited by Arjay; January 23rd, 2010 at 03:37 PM.

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

Featured