Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VFP suggestion for a help file within

Status
Not open for further replies.

bettyfurr

Technical User
Mar 12, 2002
371
0
0
US
I want to create a help file to be react to F1 on a topic level.

What do you guys recommend? Easy to use/create.

Nothing fancy. small manual on-line.


Betty :-(

 
Betty,

If you have the current issue of FoxPro Advisor, take a look at my article "Help without the hassle". I think it will give you exactly the answers you need.

Mike


__________________________________
Mike Lewis (Edinburgh, Scotland)

My sites:
Visual FoxPro (www.ml-consult.demon.co.uk)
Crystal Reports (www.ml-crystal.com)
 
Rick,

Yes, it's the Feb issue.

However, I just realised that what Betty was probably asking for was not how to implement the help system, but what authoring tool to use.

Betty, if you follow the method I outlined in the article, you will have to use an authoring tool that supports the old-style Winhelp (HLP files) rther than the more recent CHM-style. That's because, with CHM files, you have to launch the full viewer each time the user hits F1, which adds overhead and gives the user more than they need. With HLP, you just get a quick pop-up window.

My own preference is for Help & Manual ( but there are many others on the market.

Mike


__________________________________
Mike Lewis (Edinburgh, Scotland)

My sites:
Visual FoxPro (www.ml-consult.demon.co.uk)
Crystal Reports (www.ml-crystal.com)
 
Hi,

I don't see problems with CHM Help. This also gives you the opportunity to layout the help with HTML. If your help is small the HTML Help Workshop that come with VFP since VFP7 could be sufficient.

Bye, Olaf.
 
Olaf,

I don't see problems with CHM Help

It's not really a problem. It's just that the aim of F1 help is to pop up a quick help window to give you instant information on the field you are editing. With "classic" help, that happens instantly, and the popup is right next to the field in question.

With CHM help, instead of a popup, the user has to negotiate the full help viewer, with all its tabs and navigation. Also, for that to be effective, the help author has to create hyperlinks, table of contents, keyword lists and all the other help paraphernalia.

In may cases, a full help system is what you want. But Betty was asking about quick and easy F1 help (as least, I assume that's the case).

Mike

__________________________________
Mike Lewis (Edinburgh, Scotland)

My sites:
Visual FoxPro (www.ml-consult.demon.co.uk)
Crystal Reports (www.ml-crystal.com)
 
Hi Mike,

you are talking about context help, which normally is called by [SHIFT]+[F1] and/or you have a WhatsThisBotton [?] on the Control Box and set the WhatsThisHelpID of controls. CHM help can also provide that, and it pops up like a ToolTip.

On the other side, if you want only a help like this, you may simply use ToolTip texts - and don't forget to set the ShowTips property of the form to .T.!

Bye, Olaf.
 
Olaf,

you are talking about context help, which normally is called by [SHIFT]+[F1] and/or you have a WhatsThisBotton [?] on the Control Box and set the WhatsThisHelpID of controls. CHM help can also provide that, and it pops up like a ToolTip.

Are you sure about that? What Betty specifically asked for was F1 help (although I believe WhatsThisHelp looks the same). Either way, CHM opens the full help viewer, not the popup.

On the other side, if you want only a help like this, you may simply use ToolTip texts - and don't forget to set the ShowTips property of the form to .T.!

I disagree. Tooltips have their place, but they are nowhere near as useful as a proper help popup, for the following reasons:

- Tooltips are limited to 127 characters (in VFP 7.0 and below), with no control over wordwrapping (in 8.0 and above, it's 4,095 characters with wordwrapping). A popup help window can be as long as you like, and you have full control over line breaks.

- Tooltips are limited to the default font and colours. Popup help can contain whatever combination of fonts, styles and colours you want, not to mention graphics.

- Tooltips only work with specific controls. Popup help can be applied to a control, a form or even if no form is open.

Mike

__________________________________
Mike Lewis (Edinburgh, Scotland)

My sites:
Visual FoxPro (www.ml-consult.demon.co.uk)
Crystal Reports (www.ml-crystal.com)
 
HTML Help does indeed provide support for popup text. Granted, HLP has a bit of a richer format available via RTF for these. HTML Help can overcome this somewhat by using HTML windows.

I noticed that bettyfurr used the phrase "manual on-line" (sic) in her orginal post here. With CHM you get the added benefit of being able to quickly and easily convert your help system into an online website (though this really doesn't speak to the F1 functionality)... you can use the html pages to produce the website manual or even convert your CHM using something like:


boyd.gif

 
Michael,

I agree with OlafDoschke. I use FrontPage to make HTML pages and HTML Help Workshop to produce CHM help file.


I'm not saying you can't produce CHM files from HTML pages, and I'm not saying that you can't use CHM files with F1 help. All I'm saying is that, if you use F1 help with CHM files, the user sees the full viewer window rather than a popup window.

Perhaps at this point it would be useful if Betty could let us know exactly what she wants to achieve. That way, we can focus the conversation accordingly.

Mike


__________________________________
Mike Lewis (Edinburgh, Scotland)

My sites:
Visual FoxPro (www.ml-consult.demon.co.uk)
Crystal Reports (www.ml-crystal.com)
 
Mike Lewis said:
...All I'm saying is that, if you use F1 help with CHM files, the user sees the full viewer window rather than a popup window...

Which is wrong. But you're right, betty should decide, what she needs and wants.

Bye, Olaf.
 
Hi Mike,

some hints:
You may setup different windows with and without the index/search, menu title bar.
You do not need to use the TextPopups Sectoin, as that is really just for text popups with no graphics as you stated, but you don't need to use that...

Bye, Olaf.
 
Olaf and MichaelKopljan,

OK, here's what I did:

- Created a CHM help file.

- Created a topic with context ID = 500. This was a popup topic.

- No TOC, index or search terms in the help file. In fact, nothing but this one topic.

- In my VFP app, SET HELP TO this help file.

- In one of the controls on a form, set WhatThisHelpID to 500.

- Ran the app. Put focus in the contol. Pressed F1.

Result: the full Help viewer came up, just as I expected.

I also set the control's HelpContextID to 500 and repeated the test, with exactly the same result.

So, what's going on here? You two are obviously seeing something different to me.

Mike

__________________________________
Mike Lewis (Edinburgh, Scotland)

My sites:
Visual FoxPro (www.ml-consult.demon.co.uk)
Crystal Reports (www.ml-crystal.com)
 
Hi Guys,

I have reading your suggestions. I have been home with the flu.

I want to do a simple help file. The only help file that I have done is the dbf file with the F1 key bringing up the contents.

I have looked at the Visual Fox Help instructions on winhelp and html help. Which is better? especially when it comes to including the help in a distribution of an application exe.

Thank you, Glad to be back with all the responses.

Please tell Mike what is problem is. I want to know.

Betty :)

 
Mike, I suggested defining a window type.

Click the Button "Add/Modify window definitions". Then you can define, what is displayed in this window, which toolbar buttons are on it. You may uncheck what you don't want. Under "Extended Style" you may even define it to be a "context help" window. I'd say this is the key to a HTML context help instead of simple text popups.

And then, if you put that topic as an item to a TOC, you can define the default frame and default window for that topic. And don't press F1, press SHIFT+F1 then click with the ?-Mousepointer on the control. This will start the "context" help.

Bye, Olaf.
 
Hi Betty,

the old style WinHelp (HLP) is a little easier to deploy, as HTML help depends on several components installed (which is the smaller problem on even Win98 machnes nowadays, and you need to register two files from foxpro:

foxhhelpps7.dll
and
foxhhelp7.exe

Or ...8.exe/dll or ...9.exe/dll depending on the foxpro version.

If you build a setup with Installshield Express (you got that with VFP7+) that can be done quite easy.

The advantage of CHM help is of course, that you at least have the HTML Help Workshop to make that help. Other tools are certainly more comfortable.

Also take a look at:

Bye, Olaf.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top