A problem about show help file in pocket pc
-
I am writing a application in pocketpc and I conflicted with a problem. I want show a help file when user want, I use below code when user click on help button Help.ShowHelp(null, "//ProgramFiles//Chess//Documents//help.chm"); In propertise of help.chm file, I chose "content" in build action and " Copy if newer" in copy to output directory. And when I run application. Program show me a messenger with content as "can not open help. The file can not be found" Please advise me that how I have to do? Thanks
-
I am writing a application in pocketpc and I conflicted with a problem. I want show a help file when user want, I use below code when user click on help button Help.ShowHelp(null, "//ProgramFiles//Chess//Documents//help.chm"); In propertise of help.chm file, I chose "content" in build action and " Copy if newer" in copy to output directory. And when I run application. Program show me a messenger with content as "can not open help. The file can not be found" Please advise me that how I have to do? Thanks
"//ProgramFiles//Chess//Documents//help.chm" <- incorrect "\\Program Files\\Chess\\Documents\\help.chm" <- Correct Note that there is a space between "Program" and "Files."
Joel Ivory Johnson
Meet my dev team: RDA Architecture Evangelist Team Blog
My site: J2i.net
Twitter: J2iNet
-
"//ProgramFiles//Chess//Documents//help.chm" <- incorrect "\\Program Files\\Chess\\Documents\\help.chm" <- Correct Note that there is a space between "Program" and "Files."
Joel Ivory Johnson
Meet my dev team: RDA Architecture Evangelist Team Blog
My site: J2i.net
Twitter: J2iNet
Thanks. I did do it follow your instructions and program showed file. But I think PocketPC is not support for chm file. Because programe show file with a content as "af0apafapfashfafalfao.....". General is so, I attempt with doc file and the its result is so. Please help me.
-
Thanks. I did do it follow your instructions and program showed file. But I think PocketPC is not support for chm file. Because programe show file with a content as "af0apafapfashfafalfao.....". General is so, I attempt with doc file and the its result is so. Please help me.
You can use plain HTML files to contain your help information.
Joel Ivory Johnson
Meet my dev team: RDA Architecture Evangelist Team Blog
My site: J2i.net
Twitter: J2iNet