| View previous topic :: View next topic |
| Author |
Message |
Paul Dolen Guest
|
Posted: Thu Apr 20, 2006 4:03 pm Post subject: WinHelpViewer - porting C++ Builder 5 app to 2006 |
|
|
I've got an app I developed originally with C++ Builder 5 that I was
trying to port to C++ Builder 2006. I have a basic Windows .HLP file
for the application. I found that I could not get the help to work
after upgrading the app to 2006. I've done a bit of searching, and
found that there are some differences related to WinHelpViewer, but I
haven't figured out exactly what I need to do to get my application to
work like it used to. Specifically, I used the HelpCommand and
HelpContext functions to access my help file. Thanks for any
suggestions. |
|
| Back to top |
|
 |
JD Guest
|
Posted: Thu Apr 20, 2006 8:03 pm Post subject: Re: WinHelpViewer - porting C++ Builder 5 app to 2006 |
|
|
Paul Dolen <nospam (AT) nowhere (DOT) com> wrote:
| Quote: |
[...] there are some differences related to WinHelpViewer,
but I haven't figured out exactly what I need to do to get
my application to work like it used to.
|
http://tinyurl.com/rwlnr
~ JD |
|
| Back to top |
|
 |
Paul Dolen Guest
|
Posted: Fri Apr 21, 2006 3:03 pm Post subject: Re: WinHelpViewer - porting C++ Builder 5 app to 2006 |
|
|
Thanks for the link. The discussion topic was Delphi though, and the
last message in the thread seemed to imply that it wasn't the same for
C++ Builder projects, but didn't elaborate. But I'll try doing the
rough equivalent in C++ and see if it works.
On 20 Apr 2006 12:15:36 -0700, "JD" <nospam (AT) nospam (DOT) com> wrote:
> http://tinyurl.com/rwlnr |
|
| Back to top |
|
 |
JD Guest
|
Posted: Fri Apr 21, 2006 4:03 pm Post subject: Re: WinHelpViewer - porting C++ Builder 5 app to 2006 |
|
|
Paul Dolen <nospam (AT) nowhere (DOT) com> wrote:
| Quote: |
[...] The discussion topic was Delphi though,
|
No it wasn't. The *solution* was Delphi which is supported in
the C++ compiler. Just do what the link says.
| Quote: | and the last message in the thread seemed to imply that it
wasn't the same for C++ Builder projects,
|
No, it said that there wasn't a C++ solution that he knew of.
~ JD |
|
| Back to top |
|
 |
Danzer Guest
|
Posted: Fri Apr 21, 2006 7:03 pm Post subject: Re: WinHelpViewer - porting C++ Builder 5 app to 2006 |
|
|
Paul Dolen wrote:
| Quote: | Thanks for the link. The discussion topic was Delphi though, and the
last message in the thread seemed to imply that it wasn't the same for
C++ Builder projects, but didn't elaborate. But I'll try doing the
rough equivalent in C++ and see if it works.
On 20 Apr 2006 12:15:36 -0700, "JD" <nospam (AT) nospam (DOT) com> wrote:
http://tinyurl.com/rwlnr
|
Add
#pragma link "WinHelpViewer"
to the cpp file for your main form.
Danzer |
|
| Back to top |
|
 |
Paul Dolen Guest
|
Posted: Mon Apr 24, 2006 3:03 pm Post subject: Re: WinHelpViewer - porting C++ Builder 5 app to 2006 |
|
|
| Quote: | Add
#pragma link "WinHelpViewer"
to the cpp file for your main form.
|
Great, thanks! |
|
| Back to top |
|
 |
|