Click here to Skip to main content
15,879,326 members
Articles / Web Development / HTML

Providing Web Applications with Context Sensitive Help Using RoboHelp WebHelp

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
23 Apr 2008CPOL11 min read 72.8K   1.5K   17  
This article shows how to implement context sensitive help for your ASP.NET web applications using RoboHelp WebHelp.
//	WebHelp 5.10.002
var WH_MSG_RESIZEPANE		=0x0100;
var WH_MSG_SHOWPANE			=0x0101;
var WH_MSG_HIDEPANE			=0x0102;
var WH_MSG_SYNCTOC			=0x0103;
var WH_MSG_NEXT				=0x0104;
var WH_MSG_PREV				=0x0105;
var WH_MSG_NOSEARCHINPUT	=0x0106;
var WH_MSG_NOSYNC			=0x0107;
var WH_MSG_ENABLEWEBSEARCH 	=0x0108;

var WH_MSG_ISPANEVISIBLE	=0x0109;
var WH_MSG_PANESTATUE		=0x010a;

var	WH_MSG_SYNCINFO			=0x010b;
var WH_MSG_PANEINFO			=0x010c;
var WH_MSG_WEBSEARCH		=0x010d;

var WH_MSG_SEARCHINDEXKEY 	=0x0201;

var WH_MSG_SEARCHFTSKEY 	=0x020a;

var WH_MSG_PROJECTREADY		=0x0301;
var WH_MSG_GETPROJINFO 		=0x0302;

var WH_MSG_SHOWTOC 			=0x0401;
var WH_MSG_SHOWIDX 			=0x0402;
var WH_MSG_SHOWFTS 			=0x0403;
var WH_MSG_SHOWGLO 			=0x0404;

var WH_MSG_SHOWGLODEF 		=0x0500;

var WH_MSG_GETTOCPATHS 		=0x0600;
var WH_MSG_GETAVIAVENUES 	=0x0601;
var WH_MSG_GETCURRENTAVENUE =0x0602;
var WH_MSG_GETPANEINFO		=0x0603;
var WH_MSG_AVENUEINFO		=0x0604;

var WH_MSG_GETSTARTFRAME 	=0x0701;
var WH_MSG_GETDEFAULTTOPIC	=0x0702;

var WH_MSG_SEARCHTHIS		=0x0801;
var WH_MSG_GETSEARCHS		=0x0802;

var WH_MSG_ISINFRAMESET		=0x0900;

var WH_MSG_TOOLBARORDER		=0x0a00;
var WH_MSG_MINIBARORDER		=0x0a01;
var WH_MSG_ISSYNCSSUPPORT	=0x0a02;
var WH_MSG_ISSEARCHSUPPORT	=0x0a03;
var WH_MSG_GETPANETYPE		=0x0a04;
var WH_MSG_BACKUPSEARCH		=0x0a05;
var WH_MSG_GETPANES			=0x0a06;
var WH_MSG_INITSEARCHSTRING =0x0a07;
var WH_MSG_RELOADNS6		=0x0a08;
var WH_MSG_ISAVENUESUPPORT	=0x0a09;

var WH_MSG_GETCMD			=0x0b00;
var	WH_MSG_GETPANE			=0x0b01;
var WH_MSG_GETDEFPANE		=0x0b02;

function whMessage(nMessageId,wSender,nVersion,oParam)
{
	this.nMessageId=nMessageId;
	this.wSender=wSender;
	this.nVersion=nVersion;
	this.oParam=oParam;
}
var gbWhMsg=true;

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
President Starpoint Software Inc.
United States United States
Bob Pittenger is founder and President of Starpoint Software Inc. He holds a B.A. degree from Miami University, M.S. and Ph.D. degrees from Purdue University, and an MBA from Xavier University. He has been programming since 1993, starting with Windows application development in C++/MFC and moving to C# and .NET around 2005 and is a .NET Microsoft Certified Professional Developer.

Bob is the author of two books:
Billionaire: How the Ultra-Rich Built Their Fortunes Through Good and Evil and What You Can Learn from Them
and
Wealthonomics: The Most Important Economic and Financial Concepts that Can Make You Rich Fast.
Visit http://www.billionairebook.net for more information.

Comments and Discussions