×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
This looks like it'll address my need. Appreciate the input. My google
skills just wasn't getting the result I needed.
***
Regards,
Joe W Holt
Sr Programmer/Developer
Jack Onofrio Dog Shows, LLC
405.427.8181
From: Buck Calabro <kc2hiz@xxxxxxxxx>
To: web400@xxxxxxxxxxxx
Date: 07/16/2015 01:35 PM
Subject: Re: [WEB400] 5250 screen calls to browser
Sent by: "WEB400" <web400-bounces@xxxxxxxxxxxx>
On 7/16/2015 2:20 PM, Joe W Holt wrote:
Not looking to echo the url on the screen, was hoping a menu call or a
function key could trigger a URL pass to the local browser.
Does this help?
http://wiki.midrange.com/index.php/STRPCCMD
I'd use the rundll32 method myself. You can fire STRPCCMD from an RPG
program via QCMDEXEC.
In a CL program:
PGM PARM(&SITE)
DCL VAR(&CMD) TYPE(*CHAR) LEN(120)
DCL VAR(&SITE) TYPE(*CHAR) LEN(30)
CHGVAR VAR(&CMD) VALUE('rundll32.exe +
url.dll,FileProtocolHandler ' *BCAT +
'
http://www.' *CAT &SITE *TCAT '.com')
STRPCO PCTA(*NO)
MONMSG MSGID(IWS4010)
STRPCCMD PCCMD(&CMD) PAUSE(*NO)
ENDPGM
--
--buck
--
This is the Web Enabling the IBM i (AS/400 and iSeries) (WEB400) mailing
list
To post a message email: WEB400@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit:
http://lists.midrange.com/mailman/listinfo/web400
or email: WEB400-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at
http://archive.midrange.com/web400.
As an Amazon Associate we earn from qualifying purchases.