On Fri, 2 Feb 2007 07:38:05 -0600, Chase, John <[EMAIL PROTECTED]> wrote:

>> -----Original Message-----
>> From: IBM Mainframe Discussion List On Behalf Of WalterR
>>
>> [ snip ]
>> >
>> With QW, after entering "QW" on the ISPF command line you
>> simply position the cursor on/over the message code (for
>> which you can use the mouse) and <enter>.
>
>If your emulator is "properly" configured, you need only double-click on
>the message ID and QW retrieves the explanation.  "Properly" in context
>means that double-click sends the 3270 <enter> AID (Bluezone does that
>by default).
>

Or if you use VISTA, use this handy macro. I apologize for not 
giving credit to the author, it was given to me by I think
John Kalinich who I think got it from someone else.  

Change "V1R8" in the URL to whatever release you need. AS the comments
say, I used "left shift + double click left mouse" and it opens lookat
in my browser for the message.   Very handy if you don't have QuickRef.

Sorry for the code wrap.  

**********************************************************************
*   LookAt Macro - Searches IBM Message help for the message id at the
cursor position.
**********************************************************************
* Edit a mouse key to point to this macro (for example, a shift-left double
click)
*-------- get the word at the cursor position ------------------------
Key("MoveCursor")          ;* move cursor to mouse position
Key("SelectWord")          ;* select word at mouse position
msgid = Screen(StartRow,StartCol,EndCol-StartCol+1)  ;* get selected text
*------- Build up the URL --------*
url =
"http://publibz.boulder.ibm.com/cgi-bin/os390/lookat.cmd?&release=ZOS%2FV1R8&msgid=";
+ msgid  ;* form URL

*---- Invoke the browser ---*
ShellExecute("open",url,"","",1) ;* open page in browser
exit

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

Reply via email to