I need to launch a pdf file when clicking the help button.
So I used the code :
and I imported the MyHelp.pdf file into the project.
When I'm running the application the file is launched.
But After building the application and I ran the application, it is not opening.
So I checked it with f.LastErrorCode and it shows error code 101(file not found). How can I use the pdf file in my application?
I need to distribute the application with this help file.
I'm using Realbasic 2007 R5 on Mac OS X 10.5
Thanks in advance
mahaboob
So I used the code :
Code:
Dim f as FolderItem
f = GetFolderItem("MyHelp.pdf")
f.Launch
When I'm running the application the file is launched.
But After building the application and I ran the application, it is not opening.
So I checked it with f.LastErrorCode and it shows error code 101(file not found). How can I use the pdf file in my application?
I need to distribute the application with this help file.
I'm using Realbasic 2007 R5 on Mac OS X 10.5
Thanks in advance
mahaboob