1. HTML files

I want a free program to use to make HTML files to go with a 
program that I am making.  I notice that some of your archive files come 
with HTML documentation.  If you programmed it yourself, then I guess 
I'll just stick with rtf, but if you used a tool, can you tell me what 
to use?

Thank You
Philip D.

new topic     » topic index » view message » categorize

2. Re: HTML files

Open Office has an HTML editor:
http://www.openoffice.org/

I think Mozilla does to:

http://www.mozilla.org

--- "Philip D." <philip1987 at hotmail.com> wrote:
> 
>      I want a free program to use to make HTML files
> to go with a 
> program that I am making.  I notice that some of
> your archive files come 
> with HTML documentation.  If you programmed it
> yourself, then I guess 
> I'll just stick with rtf, but if you used a tool,
> can you tell me what 
> to use?
> 
> Thank You
> Philip D.
> 
>
> 
> 
> TOPICA - Start your own email discussion group.
> FREE!
>
>
>

new topic     » goto parent     » topic index » view message » categorize

3. Re: HTML files

Philip,

The Win32Lib library has its HTML documentation created by a program
included in the Win32Lib distribution, called "MakeDoc.exw", which reads the
library & creates the HTML doc from the library;  however, this is dependent
on the library being commented in a particular style, using "slash-tags"
(--/desc, --/proc, --/func, etc).  I have an intention to make a "slash-tag
editor" to make adding them to a library easier, but that probably won't be
for a while.

It's parameter driven, so you have to say: exw.ex makedoc.exw sourcefile
[option: resultfile].

There's also a modification of MakeDoc.exw that I made which Derek included
with Win32Lib ver 0.57.11, which will create a *set* of html files instead
of just one, for in case the html result is so large it makes for slow link
jumping.  It's called "mdc14.EXw", and it's also/still parameter driven, so
there's also an "overprogram" included, "MakeMult.exw", which can
demonstrate how to use the mod to make multi-file output.  However, I see
now that it doesn't *explain* the new parameters requirements, and it calls
an earlier version of the mod, and the mod still has the old information for
parameters if you run the program without any parameters.  If you want/need
to use it, let me know & I'll detail the parameters for you.

Dan Moyer


----- Original Message -----
From: "Philip D." <philip1987 at hotmail.com>
To: "EUforum" <EUforum at topica.com>
Sent: Saturday, March 01, 2003 11:18 AM
Subject: HTML files


>
>      I want a free program to use to make HTML files to go with a
> program that I am making.  I notice that some of your archive files come
> with HTML documentation.  If you programmed it yourself, then I guess
> I'll just stick with rtf, but if you used a tool, can you tell me what
> to use?
>
> Thank You
> Philip D.
>
>
>
> TOPICA - Start your own email discussion group. FREE!
>

new topic     » goto parent     » topic index » view message » categorize

4. Re: HTML files

sigh, I meant "exw.exe makedoc.exw sourcefile [option: resultfile]" for the
parameters of MakeDoc.exw.

Dan

----- Original Message -----
From: "Dan Moyer" <DANIELMOYER at prodigy.net>
To: "EUforum" <EUforum at topica.com>
Subject: Re: HTML files


>
> Philip,
>
> The Win32Lib library has its HTML documentation created by a program
> included in the Win32Lib distribution, called "MakeDoc.exw", which reads
the
> library & creates the HTML doc from the library;  however, this is
dependent
> on the library being commented in a particular style, using "slash-tags"
> (--/desc, --/proc, --/func, etc).  I have an intention to make a
"slash-tag
> editor" to make adding them to a library easier, but that probably won't
be
> for a while.
>
> It's parameter driven, so you have to say: exw.ex makedoc.exw sourcefile
> [option: resultfile].
>
> There's also a modification of MakeDoc.exw that I made which Derek
included
> with Win32Lib ver 0.57.11, which will create a *set* of html files instead
> of just one, for in case the html result is so large it makes for slow
link
> jumping.  It's called "mdc14.EXw", and it's also/still parameter driven,
so
> there's also an "overprogram" included, "MakeMult.exw", which can
> demonstrate how to use the mod to make multi-file output.  However, I see
> now that it doesn't *explain* the new parameters requirements, and it
calls
> an earlier version of the mod, and the mod still has the old information
for
> parameters if you run the program without any parameters.  If you
want/need
> to use it, let me know & I'll detail the parameters for you.
>
> Dan Moyer
>
>
> ----- Original Message -----
> From: "Philip D." <philip1987 at hotmail.com>
> To: "EUforum" <EUforum at topica.com>
> Sent: Saturday, March 01, 2003 11:18 AM
> Subject: HTML files
>
>
> >      I want a free program to use to make HTML files to go with a
> > program that I am making.  I notice that some of your archive files come
> > with HTML documentation.  If you programmed it yourself, then I guess
> > I'll just stick with rtf, but if you used a tool, can you tell me what
> > to use?
> >
> > Thank You
> > Philip D.
> >
> >
> > TOPICA - Start your own email discussion group. FREE!
> >
>
>
>
> TOPICA - Start your own email discussion group. FREE!
>

new topic     » goto parent     » topic index » view message » categorize

5. Re: HTML files

Phil,

Uh, oops again, in my haste to be helpful, I neglected to realize that
MakeDoc.exw is mostly useful for creating html help documentation for
LIBRARIES, not for APPLICATIONS, and I think you're looking to make html
help for an application.  It looks for user inserted tags relating to global
functions, global procedures, and global constants, basically.  Sorry 'bout
that.

Dan Moyer

----- Original Message -----
From: "Dan Moyer" <DANIELMOYER at prodigy.net>
To: "EUforum" <EUforum at topica.com>
Sent: Saturday, March 01, 2003 11:11 PM
Subject: Re: HTML files


>
> Philip,
>
> The Win32Lib library has its HTML documentation created by a program
> included in the Win32Lib distribution, called "MakeDoc.exw", which reads
the
> library & creates the HTML doc from the library;  however, this is
dependent
> on the library being commented in a particular style, using "slash-tags"
> (--/desc, --/proc, --/func, etc).  I have an intention to make a
"slash-tag
> editor" to make adding them to a library easier, but that probably won't
be
> for a while.
>
> It's parameter driven, so you have to say: exw.ex makedoc.exw sourcefile
> [option: resultfile].
>
> There's also a modification of MakeDoc.exw that I made which Derek
included
> with Win32Lib ver 0.57.11, which will create a *set* of html files instead
> of just one, for in case the html result is so large it makes for slow
link
> jumping.  It's called "mdc14.EXw", and it's also/still parameter driven,
so
> there's also an "overprogram" included, "MakeMult.exw", which can
> demonstrate how to use the mod to make multi-file output.  However, I see
> now that it doesn't *explain* the new parameters requirements, and it
calls
> an earlier version of the mod, and the mod still has the old information
for
> parameters if you run the program without any parameters.  If you
want/need
> to use it, let me know & I'll detail the parameters for you.
>
> Dan Moyer
>
>
> ----- Original Message -----
> From: "Philip D." <philip1987 at hotmail.com>
> To: "EUforum" <EUforum at topica.com>
> Sent: Saturday, March 01, 2003 11:18 AM
> Subject: HTML files
>
>
> >      I want a free program to use to make HTML files to go with a
> > program that I am making.  I notice that some of your archive files come
> > with HTML documentation.  If you programmed it yourself, then I guess
> > I'll just stick with rtf, but if you used a tool, can you tell me what
> > to use?
> >
> > Thank You
> > Philip D.
> >
> >
> > TOPICA - Start your own email discussion group. FREE!
> >
>
>
>
> TOPICA - Start your own email discussion group. FREE!
>

new topic     » goto parent     » topic index » view message » categorize

6. Re: HTML files

Philip,

If you are wanting to make HTML documentation for your programs, you might
want to check out Help File Manager on the contributions page.  You can
create your help file easily, and convert it to HTML with the click of a
button.

Virtual B

----- Original Message -----
From: Dan Moyer <DANIELMOYER at prodigy.net>
Subject: Re: HTML files


>
> Phil,
>
> Uh, oops again, in my haste to be helpful, I neglected to realize that
> MakeDoc.exw is mostly useful for creating html help documentation for
> LIBRARIES, not for APPLICATIONS, and I think you're looking to make html
> help for an application.  It looks for user inserted tags relating to
global
> functions, global procedures, and global constants, basically.  Sorry
'bout
> that.
>
> Dan Moyer
>
> ----- Original Message -----
> From: "Dan Moyer" <DANIELMOYER at prodigy.net>
> To: "EUforum" <EUforum at topica.com>
> Sent: Saturday, March 01, 2003 11:11 PM
> Subject: Re: HTML files
>
>
> > Philip,
> >
> > The Win32Lib library has its HTML documentation created by a program
> > included in the Win32Lib distribution, called "MakeDoc.exw", which reads
> the
> > library & creates the HTML doc from the library;  however, this is
> dependent
> > on the library being commented in a particular style, using "slash-tags"
> > (--/desc, --/proc, --/func, etc).  I have an intention to make a
> "slash-tag
> > editor" to make adding them to a library easier, but that probably won't
> be
> > for a while.
> >
> > It's parameter driven, so you have to say: exw.ex makedoc.exw sourcefile
> > [option: resultfile].
> >
> > There's also a modification of MakeDoc.exw that I made which Derek
> included
> > with Win32Lib ver 0.57.11, which will create a *set* of html files
instead
> > of just one, for in case the html result is so large it makes for slow
> link
> > jumping.  It's called "mdc14.EXw", and it's also/still parameter driven,
> so
> > there's also an "overprogram" included, "MakeMult.exw", which can
> > demonstrate how to use the mod to make multi-file output.  However, I
see
> > now that it doesn't *explain* the new parameters requirements, and it
> calls
> > an earlier version of the mod, and the mod still has the old information
> for
> > parameters if you run the program without any parameters.  If you
> want/need
> > to use it, let me know & I'll detail the parameters for you.
> >
> > Dan Moyer
> >
> >
> > ----- Original Message -----
> > From: "Philip D." <philip1987 at hotmail.com>
> > To: "EUforum" <EUforum at topica.com>
> > Sent: Saturday, March 01, 2003 11:18 AM
> > Subject: HTML files
> >
> >
> > >      I want a free program to use to make HTML files to go with a
> > > program that I am making.  I notice that some of your archive files
come
> > > with HTML documentation.  If you programmed it yourself, then I guess
> > > I'll just stick with rtf, but if you used a tool, can you tell me what
> > > to use?
> > >
> > > Thank You
> > > Philip D.
> > >
> > >
> > > TOPICA - Start your own email discussion group. FREE!
> > >
> >
> > TOPICA - Start your own email discussion group. FREE!
> >
>
>
>
> TOPICA - Start your own email discussion group. FREE!
>
>

new topic     » goto parent     » topic index » view message » categorize

Search



Quick Links

User menu

Not signed in.

Misc Menu