472,371 Members | 1,454 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,371 software developers and data experts.

Creating a help system

Can someone point me to a document that clearly identifies the steps of
creating a good help system for an application? I have a test tool that I'd
like to add help to so that others will know how to use it.
--
Steve
Nov 17 '05 #1
5 3227
sing System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.IO;
using System.Runtime.InteropServices;
namespace TestTool
{

public class Help : System.Windows.Forms.Form
{
private System.Windows.Forms.RichTextBox richTextBox1;

private System.ComponentModel.Container components = null;

public Help()
{
InitializeComponent();
}

protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}

#region Windows Form Designer generated code

#endregion

private void Help_Load(object sender, System.EventArgs e)
{
OpenFileDialog openFile1 = new OpenFileDialog();
openFile1.FileName="handleiding.rtf";
richTextBox1.LoadFile(openFile1.FileName,RichTextB oxStreamType.RichText);
openFile1.Dispose();
}
}
}

"Steve Teeples" <St**********@discussions.microsoft.com> wrote in message
news:37**********************************@microsof t.com...
Can someone point me to a document that clearly identifies the steps of
creating a good help system for an application? I have a test tool that I'd like to add help to so that others will know how to use it.
--
Steve


Nov 17 '05 #2
Zach,

Thanks for the example of how to load a help system. What I need to learn
is how to create a help system. I downloaded HTML Help Workshop, but it
doesn't clearly state what steps are required to create a help system. I've
read some of its documentation but there isn't anything like Step 1, step 2,
....

Do you know of such a link that will show me exactly how to create a help
system?
--
Steve
"Zach" wrote:
sing System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.IO;
using System.Runtime.InteropServices;
namespace TestTool
{

public class Help : System.Windows.Forms.Form
{
private System.Windows.Forms.RichTextBox richTextBox1;

private System.ComponentModel.Container components = null;

public Help()
{
InitializeComponent();
}

protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}

#region Windows Form Designer generated code

#endregion

private void Help_Load(object sender, System.EventArgs e)
{
OpenFileDialog openFile1 = new OpenFileDialog();
openFile1.FileName="handleiding.rtf";
richTextBox1.LoadFile(openFile1.FileName,RichTextB oxStreamType.RichText);
openFile1.Dispose();
}
}
}

"Steve Teeples" <St**********@discussions.microsoft.com> wrote in message
news:37**********************************@microsof t.com...
Can someone point me to a document that clearly identifies the steps of
creating a good help system for an application? I have a test tool that

I'd
like to add help to so that others will know how to use it.
--
Steve


Nov 17 '05 #3
Steve,
Do you know of such a link that will show me exactly how to create
a help system?


You should find Char James-Tanny's tutorial useful. It's available from
here:

http://www.mvps.org/htmlhelpcenter/h....html#char_hhw

For information on using HTML Help with C#, see:

http://www.mshelpwiki.com/index.php?...MLHelpArticles

--
Pete (Microsoft Help MVP)

Nov 17 '05 #4
http://helpware.net

Matthew McDonald "User Interfaces inC#" Chapter 14.
ISBN 1-59059-045-7
Price $49.95
The book is OK, so are its examples.
You can order the book via Amazon.com.
You need such a book in your library if you are using C#.

I woud like to question whether you do really need the MS
based help system rather than what I gave you. And if you
do really need the MS based help system, maybe your
application is too complicated.

"Steve Teeples" <St**********@discussions.microsoft.com> wrote in message
news:A2**********************************@microsof t.com...
Zach,

Thanks for the example of how to load a help system. What I need to learn
is how to create a help system. I downloaded HTML Help Workshop, but it
doesn't clearly state what steps are required to create a help system. I've read some of its documentation but there isn't anything like Step 1, step 2, ...

Do you know of such a link that will show me exactly how to create a help
system?
--
Steve
"Zach" wrote:
sing System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.IO;
using System.Runtime.InteropServices;
namespace TestTool
{

public class Help : System.Windows.Forms.Form
{
private System.Windows.Forms.RichTextBox richTextBox1;

private System.ComponentModel.Container components = null;

public Help()
{
InitializeComponent();
}

protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}

#region Windows Form Designer generated code

#endregion

private void Help_Load(object sender, System.EventArgs e)
{
OpenFileDialog openFile1 = new OpenFileDialog();
openFile1.FileName="handleiding.rtf";
richTextBox1.LoadFile(openFile1.FileName,RichTextB oxStreamType.RichText); openFile1.Dispose();
}
}
}

"Steve Teeples" <St**********@discussions.microsoft.com> wrote in message news:37**********************************@microsof t.com...
Can someone point me to a document that clearly identifies the steps of creating a good help system for an application? I have a test tool
that I'd
like to add help to so that others will know how to use it.
--
Steve


Nov 17 '05 #5
Zach, I'm curious. In your posted example, are you simply loading a
richtextformat file that contains "help" topics? Is this what your example
does? That being the case, then I take it your help file contains some type
of index with links to various topics in the document?

--
Steve
"Zach" wrote:
http://helpware.net

Matthew McDonald "User Interfaces inC#" Chapter 14.
ISBN 1-59059-045-7
Price $49.95
The book is OK, so are its examples.
You can order the book via Amazon.com.
You need such a book in your library if you are using C#.

I woud like to question whether you do really need the MS
based help system rather than what I gave you. And if you
do really need the MS based help system, maybe your
application is too complicated.

"Steve Teeples" <St**********@discussions.microsoft.com> wrote in message
news:A2**********************************@microsof t.com...
Zach,

Thanks for the example of how to load a help system. What I need to learn
is how to create a help system. I downloaded HTML Help Workshop, but it
doesn't clearly state what steps are required to create a help system.

I've
read some of its documentation but there isn't anything like Step 1, step

2,
...

Do you know of such a link that will show me exactly how to create a help
system?
--
Steve
"Zach" wrote:
sing System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.IO;
using System.Runtime.InteropServices;
namespace TestTool
{

public class Help : System.Windows.Forms.Form
{
private System.Windows.Forms.RichTextBox richTextBox1;

private System.ComponentModel.Container components = null;

public Help()
{
InitializeComponent();
}

protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}

#region Windows Form Designer generated code

#endregion

private void Help_Load(object sender, System.EventArgs e)
{
OpenFileDialog openFile1 = new OpenFileDialog();
openFile1.FileName="handleiding.rtf";
richTextBox1.LoadFile(openFile1.FileName,RichTextB oxStreamType.RichText); openFile1.Dispose();
}
}
}

"Steve Teeples" <St**********@discussions.microsoft.com> wrote in message news:37**********************************@microsof t.com...
> Can someone point me to a document that clearly identifies the steps of > creating a good help system for an application? I have a test tool that I'd
> like to add help to so that others will know how to use it.
> --
> Steve


Nov 17 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Altramagnus | last post by:
I have 30 - 40 type of different window. For each type I need about 20 instances of the window. When I try to create them, I get "Error creating window handle" My guess is there is a maximum...
0
by: Matt Warner | last post by:
Hi guys, A couple of people have already posted questions about similar issues but haven't had any response. Occasionally, sometimes after running the app for a few hours, it bombs out saying...
8
by: mcmg | last post by:
Hi, I have an asp app that works fine on a windows xp machine but does not work on a windows 2000 server. I have the following code in my global.asa: <OBJECT RUNAT=Server SCOPE=SESSION...
6
by: DraguVaso | last post by:
Hi, In my application, on some given actions while debugging in Visual Studio, I suddenly get a "System.ComponentModel.Win32Exception was unhandled" Message="Error creating window handle."...
4
by: Coleen | last post by:
Hi All :-) Can anyone give me a URL where I can find a good example of code on how to create a temporary SQL table using VB.net? I've checked the Microsoft site at: ...
7
by: Nathan Sokalski | last post by:
I am having a problem saving an image with the same name it originally had. I have two similar versions of my code, one in which I close the FileStream used to open the original image before saving,...
0
by: =?Utf-8?B?TWFyaw==?= | last post by:
Users of an in-house application we have written randomly get an Error creating window handle exception, and we've not been able to determine why this happens. A typical callstack is as follows: ...
2
by: astolpho | last post by:
I am using a slightly outdated reference book on J2EE programming. It gives 2 methods of creating a database used in its casestudies. The first is an ANT script that gives the following output: ...
1
by: DarkGiank | last post by:
Hi, im new to csharp and im trying to create a class that can change the application database without no rewriting all connection code... but cause some reason it is not working... it tells me that...
2
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and credentials and received a successful connection...
1
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
0
BLUEPANDA
by: BLUEPANDA | last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
0
by: Rahul1995seven | last post by:
Introduction: In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python has gained popularity among beginners and experts...
2
by: Ricardo de Mila | last post by:
Dear people, good afternoon... I have a form in msAccess with lots of controls and a specific routine must be triggered if the mouse_down event happens in any control. Than I need to discover what...
1
by: ezappsrUS | last post by:
Hi, I wonder if someone knows where I am going wrong below. I have a continuous form and two labels where only one would be visible depending on the checkbox being checked or not. Below is the...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.