|
From: Peter T. <pe...@us...> - 2003-08-24 01:41:47
|
Update of /cvsroot/jvcl/dev/JVCL3/devtools/ErrLook/help In directory sc8-pr-cvs1:/tmp/cvs-serv4702/JVCL3/devtools/ErrLook/help Added Files: ErrLook.hhc ErrLook.hhk ErrLook.hhp ErrorMessage.htm ErrorsIni.htm Installation.htm JVCLHome.htm Lookup.htm Modules.htm Overview.htm Value.htm default.css popups.h topics.als Log Message: - Copied jvcl/devtools and jvcl/examples dev/JVCL3 - Copied JVCLConvert *.dat files to dev/JVCL3/converter --- NEW FILE: ErrLook.hhc --- <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> <HTML> <HEAD> <meta name="GENERATOR" content="Microsoft® HTML Help Workshop 4.1"> <!-- Sitemap 1.0 --> </HEAD><BODY> <OBJECT type="text/site properties"> <param name="ImageType" value="Folder"> </OBJECT> <UL> <LI> <OBJECT type="text/sitemap"> <param name="Name" value="ErrLook"> </OBJECT> <UL> <LI> <OBJECT type="text/sitemap"> <param name="Name" value="Overview"> <param name="Local" value="Overview.htm"> </OBJECT> <LI> <OBJECT type="text/sitemap"> <param name="Name" value="Installation"> <param name="Local" value="Installation.htm"> </OBJECT> <LI> <OBJECT type="text/sitemap"> <param name="Name" value="Functions"> </OBJECT> <UL> <LI> <OBJECT type="text/sitemap"> <param name="Name" value="Value"> <param name="Local" value="Value.htm"> </OBJECT> <LI> <OBJECT type="text/sitemap"> <param name="Name" value="Error Message"> <param name="Local" value="ErrorMessage.htm"> </OBJECT> <LI> <OBJECT type="text/sitemap"> <param name="Name" value="Look Up"> <param name="Local" value="Lookup.htm"> </OBJECT> <LI> <OBJECT type="text/sitemap"> <param name="Name" value="Modules"> <param name="Local" value="Modules.htm"> </OBJECT> </UL> <LI> <OBJECT type="text/sitemap"> <param name="Name" value="The errors.ini file"> <param name="Local" value="ErrorsIni.htm"> </OBJECT> </UL> </UL> </BODY></HTML> --- NEW FILE: ErrLook.hhk --- <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> <HTML> <HEAD> <meta name="GENERATOR" content="Microsoft® HTML Help Workshop 4.1"> <!-- Sitemap 1.0 --> </HEAD><BODY> <UL> </UL> </BODY></HTML> --- NEW FILE: ErrLook.hhp --- [OPTIONS] Binary Index=No Compatibility=1.1 or later Compiled file=..\bin\ErrLook.chm Contents file=ErrLook.hhc Default Window=main Default topic=Overview.htm Display compile progress=Yes Error log file=ErrLook.log Full-text search=Yes Index file=ErrLook.hhk Language=0x409 Engelska (USA) Title=ErrLook Application Help [WINDOWS] main="ERRLOOK Application Help","ErrLook.hhc","ErrLook.hhk","Overview.htm","Overview.htm","JVCLHome.htm","JVCL Home",,,0x2120,,0x43006,[684,-1,1156,841],,,,1,,,0 popup="Popup Help",,,"Overview.htm",,,,,,,,0x0,[837,-1,1159,193],,0x400,,,,,0 [FILES] Value.htm ErrorMessage.htm Installation.htm Lookup.htm Modules.htm Overview.htm ErrorsIni.htm JVCLHome.htm [ALIAS] #include topics.als [MAP] #include popups.h [INFOTYPES] --- NEW FILE: ErrorMessage.htm --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <link rel="stylesheet" type="text/css" href="default.css"> <title>Error Message</title> </head> <body> <h2>Error Message</h2> The Error Message box contains the text of the system error message, module error message or the custom message found in the <a href="ErrorsIni.htm">errors.ini</a> file based on the value entered. </body> </html> --- NEW FILE: ErrorsIni.htm --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <link rel="stylesheet" type="text/css" href="default.css"> <title>The errors.ini file</title> </head> <body> <h2>The errors.ini file</h2> In addition to retrieving system and module error messages, ERRLOOK can also display custom error messages from an ini file. The file must be named errors.ini and be located in the same folder as the program. <p>The file should have one section for each category of error messages. Each item within a section should have the error value to the left, an equal sign and the error text to the right of the equal sign. Each error record must be on a single line(i.e no line breaks). <h4>Example:</h4> <pre> [DOS Extended Error] 0x01=function number invalid $01=function number invalid 1=function number invalid </pre> <p>Note that in contrast to the lookup for system and module errors, the search in errors.ini is done on the <i>exact</i> value entered into the value edit field: entering the value "1" would find the third item in the list above, but not the first or second. To find the first item, you should enter the value "0x01" and to find the second item, you should enter the value "$1". All values should be entered without quotes. <p>Because of the way that ERRLOOK searches errors.ini, you should include one definition of each error message in every format you think will be used. You can also include defined constants in the list. For example, you could expand the above list to look like the list below to be able to find the error message for the defined constant <code>ERROR_INVALID_FUNCTION</code>: <pre> [DOS Extended Error] 0x01=function number invalid $01=function number invalid 1=function number invalid ERROR_INVALID_FUNCTION=function number invalid </pre> <p>When an item from the errors.ini list has been found, the category name is displayed as the header for the error message. <p>The system and module errors also have headers. A system error has the header "Windows Error". A module error has the filename of the module as the header. <p>Note that if several categories contain the same error code value, they will all be displayed in the message window, each preceeded by their category header. </body> </html> --- NEW FILE: Installation.htm --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <link rel="stylesheet" type="text/css" href="default.css"> <title>Installation</title> </head> <body> <h2>Installation</h2> <p>You do not need to install this program: just put the supplied files into any folder of your choice. <p>To use from within Delphi or C++Builder, add an item to the Tools menu that points to the program. <p>To uninstall, just delete the supplied files. <p>In addition to the files, ERRLOOK stores it's settings in the registry under the key <code>HKEY_CURRENT_USER\Software\JVCL\ErrLook</code> and you might want to delete this subkey if you do not plan on using it anymore. Use the regedit.exe utility in Windows to delete the registry key(s) used by ERRLOOK. </body> </html> --- NEW FILE: JVCLHome.htm --- <html> <head> <link rel="stylesheet" type="text/css" href="default.css"> <META HTTP-EQUIV="REFRESH" CONTENT="0; URL=http://jvcl.sourceforge.net"> <title>JVCL Home Page</title> </head> <body> Redirecting, please wait (or click <a href="http://jvcl.sourceforge.net">here</a>)... </body> </html> --- NEW FILE: Lookup.htm --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <link rel="stylesheet" type="text/css" href="default.css"> <title>Lookup</title> </head> <body> <h2>Look Up</h2> Click Look Up to retrieve the error message that corresponds to the system or module value entered. <p>Values can be entered in hexadecimal or decimal form (including negative decimal values). <a href="modules.htm">Modules</a> listed in the Additional Modules for Error Searching dialog are also searched as well as items in the <a href=ErrorsIni.htm>errors.ini</a> file (if present). </body> </html> --- NEW FILE: Modules.htm --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <link rel="stylesheet" type="text/css" href="default.css"> <title>Modules</title> </head> <body> <h2>Modules</h2> Click the Modules button to bring up the Additional Modules for Error Searching dialog. Type in the name of the desired .EXE or .DLL in the edit box or click the ellipsis button to select a file and click <b>Add</b> to include the modules in your error message search.<p>Remove a module from the list by highlighting it and clicking the <b>Remove</b> button. </body> </html> --- NEW FILE: Overview.htm --- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <link rel="stylesheet" type="text/css" href="default.css"> <title>ERRLOOK Overview</title> </head> <body> <h2>ERRLOOK Overview</h2> The ERRLOOK utility retrieves a system error message, a module error message or a custom error message based on the value entered. You can enter a value either by typing it in or pasting it from the Clipboard and clicking <b>Look Up</b>. The accelerator keys for Copy (Ctrl+C), Cut (Ctrl+X) and Paste (Ctrl+V) work for both the <a href="value.htm">Value</a> and <a href="ErrorMessage.htm">Error Message</a> boxes if you first highlight the text. </body> </html> --- NEW FILE: Value.htm --- <html> <head> <link rel="stylesheet" type="text/css" href="default.css"> <title>Value</title> </head> <body> <h2>Value</h2> Type in a value or paste it from the Clipboard. Enter the value in hexadecimal or decimal form, then click <a href="lookup.htm">Look Up</a>. You can also use the up/down keys to scroll the current value in the edit field if it is in decimal form. <p>Hexadecimal values should be preceded by 0x or $, and valid characters are 0-9, A-F, and a-f. <p>Decimal values may be preceded by the minus sign (-), and valid characters are 0-9. <p>You can also type in letters (for defined constants) but then the search will only be performed on the <a href="ErrorsIni.htm">errors.ini</a> file. </body> </html> --- NEW FILE: default.css --- body{padding: 0px 0px 0px 26px;background: #ffffff; color: #000000;font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 70%;} h1, h2, h3, h4{font-family: Verdana, Arial, Helvetica, sans-serif;margin-left: -6px;} h1{font-size: 145%;margin-top: .5em;margin-bottom: .5em; } h2{font-size: 130%;margin-top: 1em;margin-bottom: .6em; } h3{font-size: 115%;margin-top: 1em;margin-bottom: .6em;} h4{font-size: 100%;margin-top: 1em;margin-bottom: .6em; } hr {align:"right";color:"#000080";noshade;} ul p, ol p, dl p{margin-left: 0em;} p{margin-top: .6em;margin-bottom: .6em;} dl{margin-top: 0em; } dd{margin-bottom: 0em; margin-left: 1.9em; } dt{margin-top: .6em; } ul, ol{margin-top: .6em; margin-bottom: 0em;} ol{margin-left: 1.9em; } ul{list-style-type: disc; margin-left: 1.9em; } li{margin-bottom: .6em;} ul ol, ol ol{list-style-type: lower-alpha;} pre{margin-top: .6em;margin-bottom: .6em; } pre,code{ font: 100% Courier New, Courier, mono; color: #660000;} table{background: #999999;margin-top: .6em;margin-bottom: .3em;} th{ padding: 4px 8px;background: #cccccc;text-align: left;font-size: 70%;vertical-align: bottom;height: 25px;} td{ padding: 4px 8px;background: #ffffff;vertical-align: top;font-size: 70%;height: 25px;} blockquote{margin-left: 3.8em;margin-right: 3.8em;margin-top: .6em;margin-bottom: .6em;} sup{text-decoration: none;font-size: smaller; } a:link{color: #0066ff;} a:visited{color: #0066ff;} a:hover{color: #cc9900;} --- NEW FILE: popups.h --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topics.als --- IDH_VALUE=Value.htm IDH_ERRORMESSAGE=ErrorMessage.htm IDH_MODULES=Modules.htm IDH_LOOKUP=Lookup.htm |