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
this returns with runtime error of access is denied..is there any way of solving this Problem??Code:
private void button1_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start(@"global::Open_HelpFile.Resource1.SkinCrafter_Net");
}
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.....

