| View previous topic :: View next topic |
| Author |
Message |
Walt Morrey Guest
|
Posted: Fri Feb 20, 2004 6:07 pm Post subject: Getting C++Builder 6.0 to recognize added .hlp files |
|
|
Per previous requests for assistance, I got a bunch of info about WinAPI, etc. The help files are
located in c:Program FilesCommon FilesBorland SharedMSHelp. I'm using WinME.
Yesterday, I could use C++Builder Help to find "DeviceIoControl". Today, I can't.
What's going on?
If I just open c:Program FilesCommon FilesBorland SharedMSHelpwin32.hlp, I can find what I want.
|
|
| Back to top |
|
 |
Yu-Chen Hsueh Guest
|
Posted: Fri Feb 20, 2004 6:16 pm Post subject: Re: Getting C++Builder 6.0 to recognize added .hlp files |
|
|
Walt,
Here's an example of how to add Win32.hlp to the C++Builder IDE's Help
system:
--------------------
To add the Win32 Help files to the C++Builder 6 IDE, do the
following...
#1.
Navigate to the Borland SharedMSHelp directory and open WIN32.CNT in
Notepad. Copy the following lines:
:INDEX Win32 Programmer's Reference = WIN32.HLP
:INCLUDE WIN32SDK.CFG
:INCLUDE WIN32.TOC
#2.
Navigate to the CBuilder6Help directory and open BCB6.CNT in Notepad.
Paste the three lines you just copied above the line that reads :Include
bcb6.ohc.
#3.
After saving the changes made above, copy all files named WIN32*.* from the
Borland SharedMSHelp directory into the CBuilder6Help directory.
After doing this, open the C++Builder 6 IDE, and you will see that the
Win32 Help files have been integrated. You can now look up Win32 API
functions.
--------------------
-- YH --
--
Any e-mail sent to me from the newsgroups will be ignored. Please confine
your posts to the newsgroups and DO NOT reply to this e-mail account.
|
|
| Back to top |
|
 |
Yu-Chen Hsueh Guest
|
Posted: Fri Feb 20, 2004 6:18 pm Post subject: Re: Getting C++Builder 6.0 to recognize added .hlp files |
|
|
The basic synopsis is that you should open BCB6.CNT and make sure those
three lines from WIN32.CNT are in it. Sounds like they might be missing or
incomplete.
-- YH --
--
Any e-mail sent to me from the newsgroups will be ignored. Please confine
your posts to the newsgroups and DO NOT reply to this e-mail account.
|
|
| Back to top |
|
 |
Walt Morrey Guest
|
Posted: Fri Feb 20, 2004 8:33 pm Post subject: Re: Getting C++Builder 6.0 to recognize added .hlp files |
|
|
Now it works correctly -- I'm getting a compile error: borlndmm.dll missing.
Yet it is right there in c:Program FilesBorlandCBuilder6Bin. What's happening here?
Yu-Chen Hsueh wrote:
| Quote: | The basic synopsis is that you should open BCB6.CNT and make sure those
three lines from WIN32.CNT are in it. Sounds like they might be missing or
incomplete.
-- YH --
--
Any e-mail sent to me from the newsgroups will be ignored. Please confine
your posts to the newsgroups and DO NOT reply to this e-mail account.
|
|
|
| Back to top |
|
 |
Yu-Chen Hsueh Guest
|
Posted: Fri Feb 20, 2004 8:58 pm Post subject: Re: Getting C++Builder 6.0 to recognize added .hlp files |
|
|
C:Program FilesBorlandCBuilder6Bin needs to be on your path.
-- YH --
--
Any e-mail sent to me from the newsgroups will be ignored. Please confine
your posts to the newsgroups and DO NOT reply to this e-mail account.
|
|
| Back to top |
|
 |
|