Click here to Skip to main content
15,896,111 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionMessageBox French Pin
dungpapai27-Jun-06 23:04
dungpapai27-Jun-06 23:04 
AnswerRe: MessageBox French Pin
Cedric Moonen27-Jun-06 23:21
Cedric Moonen27-Jun-06 23:21 
AnswerRe: MessageBox French Pin
Sarath C27-Jun-06 23:26
Sarath C27-Jun-06 23:26 
AnswerRe: MessageBox French Pin
FarPointer27-Jun-06 23:26
FarPointer27-Jun-06 23:26 
QuestionHTML Help Workshop from the Command Line [modified] Pin
Joel Holdsworth27-Jun-06 22:35
Joel Holdsworth27-Jun-06 22:35 
AnswerRe: HTML Help Workshop from the Command Line Pin
Sarath C28-Jun-06 1:07
Sarath C28-Jun-06 1:07 
QuestionRe: HTML Help Workshop from the Command Line [modified] Pin
Joel Holdsworth28-Jun-06 2:31
Joel Holdsworth28-Jun-06 2:31 
AnswerRe: HTML Help Workshop from the Command Line Pin
S Douglas28-Jun-06 12:03
professionalS Douglas28-Jun-06 12:03 
Joel Holdsworth wrote:
Does anyone know how to invoke the Microsoft HTML Help workshop to compile a project from the command line?


I'm not sure if this is the only way, it is the only way I found that semi works.

Create help project using the worthless HMTL Help Work Shop,

Add all of the needed files to it.

Command line
Cd C:\Program Files\HTML Help Workshop>
C:\Program Files\HTML Help Workshop>hhc.exe <path to="" *.hhp="" file="">

The only option that I found was verbose output.

To compile a hhp file from VS 6

Add the hhp (HTML Help Project) file your VS workspace.

Click "Project"
Scrol down to "Project Settings"
Change "Settings" drop down box to "Win32 Release"
Locate the "*.hhp" file
Select Custom Build in the right hand tab, add the following to the "Commands" edit box

start hhc.exe hlp\$(InputName).hhp  
if errorlevel 1 goto :Error  
if not exist "hlp\$(InputName).chm" goto :Error  
copy "hlp\$(InputName).chm" $(ProjDir)  
copy "hlp\$(InputName).chm" $(OutDir)  
goto :done  
:Error  
echo hpp\$(InputName).hhp(1) : error:  
type "hhp\$(InputName).log"  
:done


and this to the "Outputs" edit box
$(OutDir)\$(TargetName).chm
$(WkspDir)\$(TargetName).chm



Joel Holdsworth wrote:
I feel like I'm being really dumb, but there seems to be a shortage of information on the subject.


Don't feel that way, there is an incredible lack of docos on this topic.



I'd love to help, but unfortunatley I have prior commitments monitoring the length of my grass. :Andrew Bleakley:

GeneralRe: HTML Help Workshop from the Command Line Pin
Joel Holdsworth28-Jun-06 12:20
Joel Holdsworth28-Jun-06 12:20 
GeneralRe: HTML Help Workshop from the Command Line Pin
S Douglas28-Jun-06 12:29
professionalS Douglas28-Jun-06 12:29 
Questionhow to get rid of this linker erroe Pin
GANsJob27-Jun-06 22:31
GANsJob27-Jun-06 22:31 
AnswerRe: how to get rid of this linker erroe Pin
Cedric Moonen27-Jun-06 22:34
Cedric Moonen27-Jun-06 22:34 
GeneralRe: how to get rid of this linker erroe Pin
GANsJob27-Jun-06 22:38
GANsJob27-Jun-06 22:38 
GeneralRe: how to get rid of this linker erroe Pin
Justin Tay27-Jun-06 22:46
Justin Tay27-Jun-06 22:46 
GeneralRe: how to get rid of this linker erroe Pin
Cedric Moonen27-Jun-06 22:46
Cedric Moonen27-Jun-06 22:46 
Questionhow to create an installation package Pin
Desmo1627-Jun-06 22:14
Desmo1627-Jun-06 22:14 
AnswerRe: how to create an installation package Pin
Trinainee27-Jun-06 22:25
Trinainee27-Jun-06 22:25 
GeneralRe: how to create an installation package Pin
Desmo1627-Jun-06 22:30
Desmo1627-Jun-06 22:30 
GeneralRe: how to create an installation package Pin
Trinainee27-Jun-06 22:37
Trinainee27-Jun-06 22:37 
AnswerRe: how to create an installation package Pin
Hamid_RT27-Jun-06 22:35
Hamid_RT27-Jun-06 22:35 
AnswerRe: how to create an installation package Pin
Ramón Pardo27-Jun-06 23:00
Ramón Pardo27-Jun-06 23:00 
Questionhow to update edit controls? Pin
thathvamsi27-Jun-06 22:13
thathvamsi27-Jun-06 22:13 
AnswerRe: how to update edit controls? Pin
Sarath C27-Jun-06 23:15
Sarath C27-Jun-06 23:15 
AnswerRe: how to update edit controls? Pin
David Crow28-Jun-06 6:08
David Crow28-Jun-06 6:08 
GeneralRe: how to update edit controls? [modified] Pin
thathvamsi28-Jun-06 17:19
thathvamsi28-Jun-06 17:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.