[U2] Re: wIntegrate V6 break key woes

2007-06-13 Thread Andy Pflueger

Ok, I'm going to reply to my own post here. :-)

I figured out what the problem was. On the Setup | Communications |
Windows Socket setup screen Telnet tab there's a "Break Signal" and
that was set to "Break". After changing this setting to "Interrupt",
my defined break key is working fine.


On 6/13/07, Andy Pflueger <[EMAIL PROTECTED]> wrote:

Hello,

Recently, I have installed wIntegrate Version 6.0.4 on my WinXP Pro
machine for evaluation use. So far, I really like its enhanced
features but have noticed one difference between the previous version
which I had loaded. My defined break key is reacting differently.
Always before I could use Ctrl-Pause/Break to break a program to the
debugger. Now, with the new 6.0.4 version, neither Ctrl-C or
Ctrl-Pause/Break will break a program to invoke the debugger.
Moreover, the Ctrl-Pause/Break will abort the connection with the
server altogether.

Has anybody seen or encountered this issue before and how can I change
the behavior of the Ctrl-Pause/Break to NOT close the host connection
but instead just break the program for the debugger?

---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Re: WinteGrate

2005-01-14 Thread Bright, Frank
Steve,

I don't know if you have a solution.  But $0.02 is the following

001: X.PROG = "iexplore"

002: XFILE =
"http://wwwapps.ups.com/WebTracking/processInputRequest?HTMLVersion=5.0&;
loc=en_US&Requester=UPSHome&tracknum=1Z9366900308642377&AgreeToTermsAndC
onditions=yes&track.x=22&track.y=9"

003: CALL WIN.PCRUN(X.PROG,XFILE)



Compilied and ran the code and it worked fine.


HTH


Frank




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Steve Kunzman
Sent: Wednesday, January 12, 2005 3:19 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] Re: WinteGrate

I had saved this post for future reference. The future is here. I am
trying to use WIN.PCRUN to launch internet explorer to retrieve UPS
package tracking information.  Their web site has changed, so I tried to
paste in the new URL, but it gives me a wIntegrate message, "Unable to
run specified program". This URL works if I type it in the browser. If I
try to just launch the browser and view a jpeg, a simple URL
(WWW.UPS.COM), or a text file, it works. Any ideas?

http://wwwapps.ups.com/WebTracking/processInputRequest?HTMLVersion=5.0&l
oc=en_US&Requester=UPSHome&tracknum=1Z9366900308642377&AgreeToTermsAndCo
nditions=yes&track.x=22&track.y=9

Thanks. Steve
Unidata/HP-UX

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Mark Johnson
Sent: Saturday, February 21, 2004 12:23 PM
To: U2 Users Discussion List
Subject: Re: WinteGrate

A simpler way would be:

PCFILE="C:\FOLDER\PICTURE.JPEG"
CALL WIN.PCRUN("IEXPLORE", PCFILE)

It opens up a new window with the aforementioned picture.

You can also pass URL's that you fabricate to open up very useful
windows.
Two that i use are:

www.maps.yahoo.com\&address=123&main&street&zip=12345

and
www.ups.com/tracking/1Z12345678901234567

These are fictious urls, but you can visit both UPS/Fedex and/or
Mapquest/Yahoo or any other map-like site and cut & paste the real URL
and modify the variable portion. Brings green screen users a little
closer to the nice feel of the windows world.

All of my UPS clients use the UPS concept and 3 of mine with 'truck' use
the map concept.

my 3 cents.
- Original Message -
From: <[EMAIL PROTECTED]>
To: 
Sent: Saturday, February 21, 2004 11:39 AM
Subject: Re: WinteGrate


> In a message dated 2/19/2004 5:51:51 AM Pacific Standard Time, 
> [EMAIL PROTECTED] writes:
>
> >  Question:  Using WinteGrate, running UniVerse 10, Unix - Is
there
> > a way to display a 'jpeg' file in UniVerse ?
> > We have trucking companies that send up 'proof of
> > deliveries' in jpeg format. Our user base would love
> > to be able to view them straight from UniVerse.
> >
> > As always, very appreciative for ideas/assistance
> >
> > Barry Rogen
>
> Barry store all the jpegs in a shared windows directory on your
network
> In Universe have your program tell Wintegrate to "write the following
path
> into the clipboard" blah blah blah (the path of the image in the
shared
Windows
> directory)
> Then in your Universe program tell Wintegrate to execute its script 
> "showjpg.scr" or something like that (you create this script in a
shared
location as
> well)
> The Wintegrate script merely launches whatever it finds in the
clipboard
>
> Will Johnson
> Fast Forward Technologies
> --
> u2-users mailing list
> u2-users@oliver.com
> http://www.oliver.com/mailman/listinfo/u2-users

--
u2-users mailing list
u2-users@oliver.com
http://www.oliver.com/mailman/listinfo/u2-users
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Re: WinteGrate

2005-01-14 Thread David Robertshaw
Here's a summary of how this works in wIntegrate:

To run a specific PC program from a Basic program and pass it an argument, use:
  CALL WIN.PCRUN("iexplore", "www.ups.com")
  CALL WIN.PCRUN("excel", "myfile.xls")

To run a program from the file association in the registry, use:
  CALL WIN.PCRUN("www.ups.com", "")
  CALL WIN.PCRUN("myfile.xls", "")

To run a url displayed on the 80x24 character screen, for example www.ups.com, 
single-click on the url. This can be customised, see:
  * Setup Mouse, Key Definition for MouseLeft
  * Program Files\wIntegrate\WintSys\Script\Click.wis

wIntegrate can also display images in various formats including jpegs, either 
on the 80x24 screen (using WIN.IMAGE) or in a pop-up dialog (which would need 
some scripting).
 
David
Vistus Technologies

-Original Message-
From: Steve Kunzman [mailto:[EMAIL PROTECTED] 
Sent: 12 January 2005 20:19
To: u2-users@listserver.u2ug.org
Subject: [U2] Re: WinteGrate

I had saved this post for future reference. The future is here. I am trying to 
use WIN.PCRUN to launch internet explorer to retrieve UPS package tracking 
information.  Their web site has changed, so I tried to paste in the new URL, 
but it gives me a wIntegrate message, "Unable to run specified program". This 
URL works if I type it in the browser. If I try to just launch the browser and 
view a jpeg, a simple URL (WWW.UPS.COM), or a text file, it works. Any ideas?

http://wwwapps.ups.com/WebTracking/processInputRequest?HTMLVersion=5.0&l
oc=en_US&Requester=UPSHome&tracknum=1Z9366900308642377&AgreeToTermsAndCo
nditions=yes&track.x=22&track.y=9

Thanks. Steve
Unidata/HP-UX

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Mark Johnson
Sent: Saturday, February 21, 2004 12:23 PM
To: U2 Users Discussion List
Subject: Re: WinteGrate

A simpler way would be:

PCFILE="C:\FOLDER\PICTURE.JPEG"
CALL WIN.PCRUN("IEXPLORE", PCFILE)

It opens up a new window with the aforementioned picture.

You can also pass URL's that you fabricate to open up very useful windows.
Two that i use are:

www.maps.yahoo.com\&address=123&main&street&zip=12345

and
www.ups.com/tracking/1Z12345678901234567

These are fictious urls, but you can visit both UPS/Fedex and/or Mapquest/Yahoo 
or any other map-like site and cut & paste the real URL and modify the variable 
portion. Brings green screen users a little closer to the nice feel of the 
windows world.

All of my UPS clients use the UPS concept and 3 of mine with 'truck' use the 
map concept.

my 3 cents.
- Original Message -
From: <[EMAIL PROTECTED]>
To: 
Sent: Saturday, February 21, 2004 11:39 AM
Subject: Re: WinteGrate


> In a message dated 2/19/2004 5:51:51 AM Pacific Standard Time, 
> [EMAIL PROTECTED] writes:
>
> >  Question:  Using WinteGrate, running UniVerse 10, Unix - Is
there
> > a way to display a 'jpeg' file in UniVerse ?
> > We have trucking companies that send up 'proof of
> > deliveries' in jpeg format. Our user base would love
> > to be able to view them straight from UniVerse.
> >
> > As always, very appreciative for ideas/assistance
> >
> > Barry Rogen
>
> Barry store all the jpegs in a shared windows directory on your
network
> In Universe have your program tell Wintegrate to "write the following
path
> into the clipboard" blah blah blah (the path of the image in the
shared
Windows
> directory)
> Then in your Universe program tell Wintegrate to execute its script 
> "showjpg.scr" or something like that (you create this script in a
shared
location as
> well)
> The Wintegrate script merely launches whatever it finds in the
clipboard
>
> Will Johnson
> Fast Forward Technologies
> --
> u2-users mailing list
> u2-users@oliver.com
> http://www.oliver.com/mailman/listinfo/u2-users


-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.300 / Virus Database: 265.6.11 - Release Date: 12/01/2005
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Re: WinteGrate

2005-01-13 Thread Ian Renfrew
What is the default browser of the machine your running wIntgerate on? Is it
Internet Explorer, Firefox or something else?
What version of wIntegrate are you running?
What version of host programs are you running?
Can you invoke the Browser / URL manually via wIntegrate, RUN / PROGRAM menu
options?

Regards,  Ian Renfrew  

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Steve Kunzman
Sent: Wednesday, January 12, 2005 3:19 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] Re: WinteGrate

I had saved this post for future reference. The future is here. I am
trying to use WIN.PCRUN to launch internet explorer to retrieve UPS
package tracking information.  Their web site has changed, so I tried to
paste in the new URL, but it gives me a wIntegrate message, "Unable to
run specified program". This URL works if I type it in the browser. If I
try to just launch the browser and view a jpeg, a simple URL
(WWW.UPS.COM), or a text file, it works. Any ideas?

http://wwwapps.ups.com/WebTracking/processInputRequest?HTMLVersion=5.0&l
oc=en_US&Requester=UPSHome&tracknum=1Z9366900308642377&AgreeToTermsAndCo
nditions=yes&track.x=22&track.y=9

Thanks. Steve
Unidata/HP-UX

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Mark Johnson
Sent: Saturday, February 21, 2004 12:23 PM
To: U2 Users Discussion List
Subject: Re: WinteGrate

A simpler way would be:

PCFILE="C:\FOLDER\PICTURE.JPEG"
CALL WIN.PCRUN("IEXPLORE", PCFILE)

It opens up a new window with the aforementioned picture.

You can also pass URL's that you fabricate to open up very useful
windows.
Two that i use are:

www.maps.yahoo.com\&address=123&main&street&zip=12345

and
www.ups.com/tracking/1Z12345678901234567

These are fictious urls, but you can visit both UPS/Fedex and/or
Mapquest/Yahoo or any other map-like site and cut & paste the real URL
and
modify the variable portion. Brings green screen users a little closer
to
the nice feel of the windows world.

All of my UPS clients use the UPS concept and 3 of mine with 'truck' use
the
map concept.

my 3 cents.
- Original Message -
From: <[EMAIL PROTECTED]>
To: 
Sent: Saturday, February 21, 2004 11:39 AM
Subject: Re: WinteGrate


> In a message dated 2/19/2004 5:51:51 AM Pacific Standard Time,
> [EMAIL PROTECTED] writes:
>
> >  Question:  Using WinteGrate, running UniVerse 10, Unix - Is
there
> > a way to display a 'jpeg' file in UniVerse ?
> > We have trucking companies that send up 'proof of
> > deliveries' in jpeg format. Our user base would love
> > to be able to view them straight from UniVerse.
> >
> > As always, very appreciative for ideas/assistance
> >
> > Barry Rogen
>
> Barry store all the jpegs in a shared windows directory on your
network
> In Universe have your program tell Wintegrate to "write the following
path
> into the clipboard" blah blah blah (the path of the image in the
shared
Windows
> directory)
> Then in your Universe program tell Wintegrate to execute its script
> "showjpg.scr" or something like that (you create this script in a
shared
location as
> well)
> The Wintegrate script merely launches whatever it finds in the
clipboard
>
> Will Johnson
> Fast Forward Technologies
> --
> u2-users mailing list
> u2-users@oliver.com
> http://www.oliver.com/mailman/listinfo/u2-users

-- 
u2-users mailing list
u2-users@oliver.com
http://www.oliver.com/mailman/listinfo/u2-users
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

-- 
Internal Virus Database is out-of-date.
Checked by AVG Anti-Virus.
Version: 7.0.289 / Virus Database: 265.6.5 - Release Date: 12/26/2004
 

-- 
Internal Virus Database is out-of-date.
Checked by AVG Anti-Virus.
Version: 7.0.289 / Virus Database: 265.6.5 - Release Date: 12/26/2004
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Re: WinteGrate

2005-01-12 Thread Barry Brevik
>This URL works if I type it in the browser. If I
>try to just launch the browser and view a jpeg, a simple URL

This alternate method works well for me:

PRINT CHAR(27):CHAR(1):\Run
'http://wwwapps.ups.com/WebTracking/processInputRequest?HTMLVersion=5.0&loc=
en_US&Requester=UPSHome&tracknum=1Z9366900308642377&AgreeToTermsAndCondition
s=yes&track.x=22&track.y=9',,,4,'open','.'\:CHAR(13):

Barry Brevik
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Re: WinteGrate

2005-01-12 Thread Mark Johnson
I've installed the same exact UPS connection with WIN.PCRUN without a
problem. The only potential problem that I came into was each particular
user may have IEXPLORE in a different folder and the PC side can't find it.

I test WIN.PCRUN at TCL with the following statement:

PRINT ; CALL WIN.PCRUN("IEXPLORE","WWW.EBAY.COM")

Using a simple URL may prove if it's the URL, its syntax or the actual
mechanics of IEXPLORE.

My 1 cent.


- Original Message -
From: "Alfke, Colin" <[EMAIL PROTECTED]>
To: 
Sent: Wednesday, January 12, 2005 4:53 PM
Subject: RE: [U2] Re: WinteGrate


> George might be onto something. In DOS the & character needs to be
"escaped" using the ^. Try changing all of the & in the url to ^&.
>
> hth
> Colin Alfke
> in way too cold Calgary
>
> >-Original Message-
> >From: George Gallen
> >
> >do you need to quote the URL? with all those &'s and ?'s maybe
> >wintergate is trying to do something.
> >
> >BTW, is it supposed to be wwwapps or www.apps and just a typo
> >for the email?
> >
> >>-Original Message-
> On Behalf Of Steve Kunzman
> >>
> >>I had saved this post for future reference. The future is here. I am
> >>trying to use WIN.PCRUN to launch internet explorer to retrieve UPS
> >>package tracking information.  Their web site has changed, so
> >>I tried to
> >>paste in the new URL, but it gives me a wIntegrate message, "Unable to
> >>run specified program". This URL works if I type it in the
> >>browser. If I
> >>try to just launch the browser and view a jpeg, a simple URL
> >>(WWW.UPS.COM), or a text file, it works. Any ideas?
> >>
> >>http://wwwapps.ups.com/WebTracking/processInputRequest?HTMLVers
> >>ion=5.0&l
> >>oc=en_US&Requester=UPSHome&tracknum=1Z9366900308642377&AgreeToT
> >>ermsAndCo
> >>nditions=yes&track.x=22&track.y=9
> >>
> >>Thanks. Steve
> >>Unidata/HP-UX
> ---
> u2-users mailing list
> u2-users@listserver.u2ug.org
> To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Re: WinteGrate

2005-01-12 Thread Mark Johnson
FIBR is huge and I wish it were everywhere.
It's Unidata's way of FILING, BASICing and RUNning a program from within the
editor. Saves the writing of pesky utilities and/or typing everything by
hand.

Of course you could have a cycle of X3, X3 and X3 should your
last 3 TCL commands be EDIT BP XXX, BASIC BP XXX and RUN BP XXX. D3 supports
 and also  for the same effect.

I think FIB also works as expected.

My 1 cent.

PS. It's wIntegrate not WINTERgrate.

- Original Message -
From: "Brutzman, Bill" <[EMAIL PROTECTED]>
To: 
Sent: Wednesday, January 12, 2005 4:58 PM
Subject: RE: [U2] Re: WinteGrate


> What is the meaning of 'FIBR' ?
>
> --Bill
> ---
> u2-users mailing list
> u2-users@listserver.u2ug.org
> To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Re: WinteGrate

2005-01-12 Thread Alfke, Colin
George might be onto something. In DOS the & character needs to be "escaped" 
using the ^. Try changing all of the & in the url to ^&.

hth
Colin Alfke
in way too cold Calgary

>-Original Message-
>From: George Gallen 
>
>do you need to quote the URL? with all those &'s and ?'s maybe
>wintergate is trying to do something.
>
>BTW, is it supposed to be wwwapps or www.apps and just a typo
>for the email?
>
>>-Original Message-
On Behalf Of Steve Kunzman
>>
>>I had saved this post for future reference. The future is here. I am
>>trying to use WIN.PCRUN to launch internet explorer to retrieve UPS
>>package tracking information.  Their web site has changed, so
>>I tried to
>>paste in the new URL, but it gives me a wIntegrate message, "Unable to
>>run specified program". This URL works if I type it in the
>>browser. If I
>>try to just launch the browser and view a jpeg, a simple URL
>>(WWW.UPS.COM), or a text file, it works. Any ideas?
>>
>>http://wwwapps.ups.com/WebTracking/processInputRequest?HTMLVers
>>ion=5.0&l
>>oc=en_US&Requester=UPSHome&tracknum=1Z9366900308642377&AgreeToT
>>ermsAndCo
>>nditions=yes&track.x=22&track.y=9
>>
>>Thanks. Steve
>>Unidata/HP-UX
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Re: WinteGrate

2005-01-12 Thread David Jordan
Is Wintegrate starting up Internet Explorer or is the program not found the
iexplorer execute.  

Regards

David Jordan
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Re: WinteGrate

2005-01-12 Thread skunzman
While in Unidata editor, these are commands,  FIBR =  file, basic, run.
-- Original message -- 

> What is the meaning of 'FIBR' ? 
> 
> --Bill 
> --- 
> u2-users mailing list 
> u2-users@listserver.u2ug.org 
> To unsubscribe please visit http://listserver.u2ug.org/ 
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Re: WinteGrate

2005-01-12 Thread Anthony Dzikiewicz
This may be a round about way, but Ill bet that if you wrote the command to
a bat file on the PC and then did a PCRUN to execute the bat file it might
work.  I did the following bat file;

cd c:\program files
cd internet explorer

**Note the next line is all on one line in the bat file.  I don't know what
its going to end up looking like in the email.  It's the word 'iexplore' a
space and the url in question.

iexplore
http://wwwapps.ups.com/WebTracking/processInputRequest?HTMLVersion=5.0&loc=e
n_US&Requester=UPSHome&tracknum=1Z9366900308642377&AgreeToTermsAndConditions
=yes&track.x=22&track.y=9


Im not a wIntegrate person, but I just know this is a way to the get it
done.  By the way, the web page came up for me this way.

Anthony

 -Original Message-
From:   [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]  On Behalf Of Steve Kunzman
Sent:   Wednesday, January 12, 2005 3:19 PM
To: u2-users@listserver.u2ug.org
Subject:[U2] Re: WinteGrate

I had saved this post for future reference. The future is here. I am
trying to use WIN.PCRUN to launch internet explorer to retrieve UPS
package tracking information.  Their web site has changed, so I tried to
paste in the new URL, but it gives me a wIntegrate message, "Unable to
run specified program". This URL works if I type it in the browser. If I
try to just launch the browser and view a jpeg, a simple URL
(WWW.UPS.COM), or a text file, it works. Any ideas?

http://wwwapps.ups.com/WebTracking/processInputRequest?HTMLVersion=5.0&l
oc=en_US&Requester=UPSHome&tracknum=1Z9366900308642377&AgreeToTermsAndCo
nditions=yes&track.x=22&track.y=9

Thanks. Steve
Unidata/HP-UX

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Mark Johnson
Sent: Saturday, February 21, 2004 12:23 PM
To: U2 Users Discussion List
Subject: Re: WinteGrate

A simpler way would be:

PCFILE="C:\FOLDER\PICTURE.JPEG"
CALL WIN.PCRUN("IEXPLORE", PCFILE)

It opens up a new window with the aforementioned picture.

You can also pass URL's that you fabricate to open up very useful
windows.
Two that i use are:

www.maps.yahoo.com\&address=123&main&street&zip=12345

and
www.ups.com/tracking/1Z12345678901234567

These are fictious urls, but you can visit both UPS/Fedex and/or
Mapquest/Yahoo or any other map-like site and cut & paste the real URL
and
modify the variable portion. Brings green screen users a little closer
to
the nice feel of the windows world.

All of my UPS clients use the UPS concept and 3 of mine with 'truck' use
the
map concept.

my 3 cents.
- Original Message -
From: <[EMAIL PROTECTED]>
To: 
Sent: Saturday, February 21, 2004 11:39 AM
Subject: Re: WinteGrate


> In a message dated 2/19/2004 5:51:51 AM Pacific Standard Time,
> [EMAIL PROTECTED] writes:
>
> >  Question:  Using WinteGrate, running UniVerse 10, Unix - Is
there
> > a way to display a 'jpeg' file in UniVerse ?
> > We have trucking companies that send up 'proof of
> > deliveries' in jpeg format. Our user base would love
> > to be able to view them straight from UniVerse.
> >
> > As always, very appreciative for ideas/assistance
> >
> > Barry Rogen
>
> Barry store all the jpegs in a shared windows directory on your
network
> In Universe have your program tell Wintegrate to "write the following
path
> into the clipboard" blah blah blah (the path of the image in the
shared
Windows
> directory)
> Then in your Universe program tell Wintegrate to execute its script
> "showjpg.scr" or something like that (you create this script in a
shared
location as
> well)
> The Wintegrate script merely launches whatever it finds in the
clipboard
>
> Will Johnson
> Fast Forward Technologies
> --
> u2-users mailing list
> u2-users@oliver.com
> http://www.oliver.com/mailman/listinfo/u2-users

--
u2-users mailing list
u2-users@oliver.com
http://www.oliver.com/mailman/listinfo/u2-users
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Re: WinteGrate

2005-01-12 Thread Brutzman, Bill
What is the meaning of 'FIBR' ?

--Bill
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Re: WinteGrate

2005-01-12 Thread Steve Kunzman
Not cataloged, just running from TCL (RUN BP PROGX).

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin King
Sent: Wednesday, January 12, 2005 2:14 PM
To: u2-users@listserver.u2ug.org
Subject: FW: [U2] Re: WinteGrate

-Original Message-
>From: [EMAIL PROTECTED]
>[mailto:[EMAIL PROTECTED] Behalf Of 
>[EMAIL PROTECTED]

>Bill, yes recompiled many times  - FIBR.

How is the program cataloged?

-Kevin
[EMAIL PROTECTED]
http://www.PrecisOnline.com
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Re: WinteGrate

2005-01-12 Thread George Gallen
I assumed the goal was to get the information to come
up on the PC, using wintergate.

However, could you use wget, or the below to get the page,
then write it out as a local file on the PC using wintergate
then use wintergate to launch ie, on the file?

George

>-Original Message-
>From: [EMAIL PROTECTED]
>[mailto:[EMAIL PROTECTED] Behalf Of Michael Spencer
>Sent: Wednesday, January 12, 2005 4:24 PM
>To: u2-users@listserver.u2ug.org
>Subject: RE: [U2] Re: WinteGrate
>
>
>How about ignoring wIntegrate features altogether and use a call to a
>subroutine like this:
>
>001 subroutine web.call.url(url,extension,results)
>002 if url='' then
>003results=''
>004return
>005 end
>006 if extension='' then extension='/ HTTP/1.1'
>007 data 'GET ':extension:@am:''
>008 execute '!telnet ':url:' 80' capturing results
>009 *
>010 return
>011 *
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Re: WinteGrate

2005-01-12 Thread Michael Spencer
I just tried it here and it works for me:

Call
win.pcrun('iexplore.exe','wwwapps.ups.com/WebTracking/processInputReques
t?HTMLVersion=5.0&loc=en_US&Requester=UPSHome&tracknum=1Z936690030864237
7&AgreeToTermsAndConditions=yes&track.x=22&track.y=9')

Maybe you just need to lose the http://   ?

(Though I am on D3/Aix)

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: January 12, 2005 4:02 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Re: WinteGrate

George, tried quoting and wwwapps is what I cut from the browser url.
Thanks. Steve

-- Original message -- 

> do you need to quote the URL? with all those &'s and ?'s maybe 
> wintergate is trying to do something. 
> 
> BTW, is it supposed to be wwwapps or www.apps and just a typo 
> for the email? 
> 
> >-Original Message- 
> >From: [EMAIL PROTECTED] 
> >[mailto:[EMAIL PROTECTED] Behalf Of Steve Kunzman

> >Sent: Wednesday, January 12, 2005 3:19 PM 
> >To: u2-users@listserver.u2ug.org 
> >Subject: [U2] Re: WinteGrate 
> > 
> > 
> >I had saved this post for future reference. The future is here. I am 
> >trying to use WIN.PCRUN to launch internet explorer to retrieve UPS 
> >package tracking information. Their web site has changed, so 
> >I tried to 
> >paste in the new URL, but it gives me a wIntegrate message, "Unable
to 
> >run specified program". This URL works if I type it in the 
> >browser. If I 
> >try to just launch the browser and view a jpeg, a simple URL 
> >(WWW.UPS.COM), or a text file, it works. Any ideas? 
> > 
> >http://wwwapps.ups.com/WebTracking/processInputRequest?HTMLVers 
> >ion=5.0&l 
> >oc=en_US&Requester=UPSHome&tracknum=1Z9366900308642377&AgreeToT 
> >ermsAndCo 
> >nditions=yes&track.x=22&track.y=9 
> > 
> >Thanks. Steve 
> >Unidata/HP-UX 
> > 
> >-Original Message- 
> >From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] 
> >On Behalf Of Mark Johnson 
> >Sent: Saturday, February 21, 2004 12:23 PM 
> >To: U2 Users Discussion List 
> >Subject: Re: WinteGrate 
> > 
> >A simpler way would be: 
> > 
> >PCFILE="C:\FOLDER\PICTURE.JPEG" 
> >CALL WIN.PCRUN("IEXPLORE", PCFILE) 
> > 
> >It opens up a new window with the aforementioned picture. 
> > 
> >You can also pass URL's that you fabricate to open up very useful 
> >windows. 
> >Two that i use are: 
> > 
> >www.maps.yahoo.com\&address=123&main&street&zip=12345 
> > 
> >and 
> >www.ups.com/tracking/1Z12345678901234567 
> > 
> >These are fictious urls, but you can visit both UPS/Fedex and/or 
> >Mapquest/Yahoo or any other map-like site and cut & paste the real
URL 
> >and 
> >modify the variable portion. Brings green screen users a little
closer 
> >to 
> >the nice feel of the windows world. 
> > 
> >All of my UPS clients use the UPS concept and 3 of mine with 
> >'truck' use 
> >the 
> >map concept. 
> > 
> >my 3 cents. 
> >- Original Message - 
> >From: 
> >To: 
> >Sent: Saturday, February 21, 2004 11:39 AM 
> >Subject: Re: WinteGrate 
> > 
> > 
> >> In a message dated 2/19/2004 5:51:51 AM Pacific Standard Time, 
> >> [EMAIL PROTECTED] writes: 
> >> 
> >> > Question: Using WinteGrate, running UniVerse 10, Unix - Is 
> >there 
> >> > a way to display a 'jpeg' file in UniVerse ? 
> >> > We have trucking companies that send up 'proof of 
> >> > deliveries' in jpeg format. Our user base 
> >would love 
> >> > to be able to view them straight from UniVerse. 
> >> > 
> >> > As always, very appreciative for ideas/assistance 
> >> > 
> >> > Barry Rogen 
> >> 
> >> Barry store all the jpegs in a shared windows directory on your 
> >network 
> >> In Universe have your program tell Wintegrate to "write the
following 
> >path 
> >> into the clipboard" blah blah blah (the path of the image in the 
> >shared 
> >Windows 
> >> directory) 
> >> Then in your Universe program tell Wintegrate to execute its script

> >> "showjpg.scr" or something like that (you create this script in a 
> >shared 
> >location as 
> >> well) 
> >> The Wintegrate script merely launches whatever it finds in the 
> >clipboard 
> >> 
> >> Will Johnson 
> >> Fast Forward Technologies 
> >> -- 
> >> u2-users mailing list 
> >> u2-users@oliver.com 
> >> http://www.oliver.com/mailman/listinfo/u2-users 
> > 
> >-- 
> >u2-users mailing list 
> >u2-users@oliver.com 
> >http://www.oliver.com/mailman/listinfo/u2-users 
> >--- 
> >u2-users mailing list 
> >u2-users@listserver.u2ug.org 
> >To unsubscribe please visit http://listserver.u2ug.org/ 
> --- 
> u2-users mailing list 
> u2-users@listserver.u2ug.org 
> To unsubscribe please visit http://listserver.u2ug.org/ 
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Re: WinteGrate

2005-01-12 Thread Marilyn Hilb
I can share my experience with win.pcrun. If I recall, the program itself uses 
either single quote or double quote to make the call out to dos/windows. In my 
case the call I was making required the same type of quote to be around the 
arguments. So I had to create a new win.pcrun and change it to use the other 
type of quotes. Doesn't look like you have any quotes in here, but I wanted to 
share that problem I had which took quite a bit of time to narrow it down.

Thanks,

Marilyn A. Hilb 
Value Part, Inc
Direct: 847-918-6099
Fax: 847-367-1892
[EMAIL PROTECTED]
www.valuepart.com

 -Original Message-
From:   [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent:   Wednesday, January 12, 2005 3:02 PM
To: u2-users@listserver.u2ug.org
Subject:RE: [U2] Re: WinteGrate

George, tried quoting and wwwapps is what I cut from the browser url.
Thanks. Steve

-- Original message -- 

> do you need to quote the URL? with all those &'s and ?'s maybe 
> wintergate is trying to do something. 
> 
> BTW, is it supposed to be wwwapps or www.apps and just a typo 
> for the email? 
> 
> >-Original Message- 
> >From: [EMAIL PROTECTED] 
> >[mailto:[EMAIL PROTECTED] Behalf Of Steve Kunzman 
> >Sent: Wednesday, January 12, 2005 3:19 PM 
> >To: u2-users@listserver.u2ug.org 
> >Subject: [U2] Re: WinteGrate 
> > 
> > 
> >I had saved this post for future reference. The future is here. I am 
> >trying to use WIN.PCRUN to launch internet explorer to retrieve UPS 
> >package tracking information. Their web site has changed, so 
> >I tried to 
> >paste in the new URL, but it gives me a wIntegrate message, "Unable to 
> >run specified program". This URL works if I type it in the 
> >browser. If I 
> >try to just launch the browser and view a jpeg, a simple URL 
> >(WWW.UPS.COM), or a text file, it works. Any ideas? 
> > 
> >http://wwwapps.ups.com/WebTracking/processInputRequest?HTMLVers 
> >ion=5.0&l 
> >oc=en_US&Requester=UPSHome&tracknum=1Z9366900308642377&AgreeToT 
> >ermsAndCo 
> >nditions=yes&track.x=22&track.y=9 
> > 
> >Thanks. Steve 
> >Unidata/HP-UX 
> > 
> >-Original Message- 
> >From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
> >On Behalf Of Mark Johnson 
> >Sent: Saturday, February 21, 2004 12:23 PM 
> >To: U2 Users Discussion List 
> >Subject: Re: WinteGrate 
> > 
> >A simpler way would be: 
> > 
> >PCFILE="C:\FOLDER\PICTURE.JPEG" 
> >CALL WIN.PCRUN("IEXPLORE", PCFILE) 
> > 
> >It opens up a new window with the aforementioned picture. 
> > 
> >You can also pass URL's that you fabricate to open up very useful 
> >windows. 
> >Two that i use are: 
> > 
> >www.maps.yahoo.com\&address=123&main&street&zip=12345 
> > 
> >and 
> >www.ups.com/tracking/1Z12345678901234567 
> > 
> >These are fictious urls, but you can visit both UPS/Fedex and/or 
> >Mapquest/Yahoo or any other map-like site and cut & paste the real URL 
> >and 
> >modify the variable portion. Brings green screen users a little closer 
> >to 
> >the nice feel of the windows world. 
> > 
> >All of my UPS clients use the UPS concept and 3 of mine with 
> >'truck' use 
> >the 
> >map concept. 
> > 
> >my 3 cents. 
> >- Original Message - 
> >From: 
> >To: 
> >Sent: Saturday, February 21, 2004 11:39 AM 
> >Subject: Re: WinteGrate 
> > 
> > 
> >> In a message dated 2/19/2004 5:51:51 AM Pacific Standard Time, 
> >> [EMAIL PROTECTED] writes: 
> >> 
> >> > Question: Using WinteGrate, running UniVerse 10, Unix - Is 
> >there 
> >> > a way to display a 'jpeg' file in UniVerse ? 
> >> > We have trucking companies that send up 'proof of 
> >> > deliveries' in jpeg format. Our user base 
> >would love 
> >> > to be able to view them straight from UniVerse. 
> >> > 
> >> > As always, very appreciative for ideas/assistance 
> >> > 
> >> > Barry Rogen 
> >> 
> >> Barry store all the jpegs in a shared windows directory on your 
> >network 
> >> In Universe have your program tell Wintegrate to "write the following 
> >path 
> >> into the clipboard" blah blah blah (the path of the image in the 
> >shared 
> >Windows 
> >> directory) 
> >> Then in your Universe program tell Wintegrate to execute its script 
> >> "showjpg.sc

RE: [U2] Re: WinteGrate

2005-01-12 Thread Michael Spencer
How about ignoring wIntegrate features altogether and use a call to a
subroutine like this:

001 subroutine web.call.url(url,extension,results)
002 if url='' then
003results=''
004return
005 end
006 if extension='' then extension='/ HTTP/1.1'
007 data 'GET ':extension:@am:''
008 execute '!telnet ':url:' 80' capturing results
009 *
010 return
011 *


 
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Steve Kunzman
Sent: January 12, 2005 3:19 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] Re: WinteGrate

I had saved this post for future reference. The future is here. I am
trying to use WIN.PCRUN to launch internet explorer to retrieve UPS
package tracking information.  Their web site has changed, so I tried to
paste in the new URL, but it gives me a wIntegrate message, "Unable to
run specified program". This URL works if I type it in the browser. If I
try to just launch the browser and view a jpeg, a simple URL
(WWW.UPS.COM), or a text file, it works. Any ideas?

http://wwwapps.ups.com/WebTracking/processInputRequest?HTMLVersion=5.0&l
oc=en_US&Requester=UPSHome&tracknum=1Z9366900308642377&AgreeToTermsAndCo
nditions=yes&track.x=22&track.y=9

Thanks. Steve
Unidata/HP-UX

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Mark Johnson
Sent: Saturday, February 21, 2004 12:23 PM
To: U2 Users Discussion List
Subject: Re: WinteGrate

A simpler way would be:

PCFILE="C:\FOLDER\PICTURE.JPEG"
CALL WIN.PCRUN("IEXPLORE", PCFILE)

It opens up a new window with the aforementioned picture.

You can also pass URL's that you fabricate to open up very useful
windows.
Two that i use are:

www.maps.yahoo.com\&address=123&main&street&zip=12345

and
www.ups.com/tracking/1Z12345678901234567

These are fictious urls, but you can visit both UPS/Fedex and/or
Mapquest/Yahoo or any other map-like site and cut & paste the real URL
and
modify the variable portion. Brings green screen users a little closer
to
the nice feel of the windows world.

All of my UPS clients use the UPS concept and 3 of mine with 'truck' use
the
map concept.

my 3 cents.
- Original Message -
From: <[EMAIL PROTECTED]>
To: 
Sent: Saturday, February 21, 2004 11:39 AM
Subject: Re: WinteGrate


> In a message dated 2/19/2004 5:51:51 AM Pacific Standard Time,
> [EMAIL PROTECTED] writes:
>
> >  Question:  Using WinteGrate, running UniVerse 10, Unix - Is
there
> > a way to display a 'jpeg' file in UniVerse ?
> > We have trucking companies that send up 'proof of
> > deliveries' in jpeg format. Our user base would love
> > to be able to view them straight from UniVerse.
> >
> > As always, very appreciative for ideas/assistance
> >
> > Barry Rogen
>
> Barry store all the jpegs in a shared windows directory on your
network
> In Universe have your program tell Wintegrate to "write the following
path
> into the clipboard" blah blah blah (the path of the image in the
shared
Windows
> directory)
> Then in your Universe program tell Wintegrate to execute its script
> "showjpg.scr" or something like that (you create this script in a
shared
location as
> well)
> The Wintegrate script merely launches whatever it finds in the
clipboard
>
> Will Johnson
> Fast Forward Technologies
> --
> u2-users mailing list
> u2-users@oliver.com
> http://www.oliver.com/mailman/listinfo/u2-users

-- 
u2-users mailing list
u2-users@oliver.com
http://www.oliver.com/mailman/listinfo/u2-users
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Re: WinteGrate

2005-01-12 Thread Kevin King
-Original Message-
>From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of
[EMAIL PROTECTED]
>Bill, yes recompiled many times  - FIBR.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


FW: [U2] Re: WinteGrate

2005-01-12 Thread Kevin King
-Original Message-
>From: [EMAIL PROTECTED]
>[mailto:[EMAIL PROTECTED] Behalf Of 
>[EMAIL PROTECTED]

>Bill, yes recompiled many times  - FIBR.

How is the program cataloged?

-Kevin
[EMAIL PROTECTED]
http://www.PrecisOnline.com
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Re: WinteGrate

2005-01-12 Thread skunzman
George, tried quoting and wwwapps is what I cut from the browser url.
Thanks. Steve

-- Original message -- 

> do you need to quote the URL? with all those &'s and ?'s maybe 
> wintergate is trying to do something. 
> 
> BTW, is it supposed to be wwwapps or www.apps and just a typo 
> for the email? 
> 
> >-Original Message- 
> >From: [EMAIL PROTECTED] 
> >[mailto:[EMAIL PROTECTED] Behalf Of Steve Kunzman 
> >Sent: Wednesday, January 12, 2005 3:19 PM 
> >To: u2-users@listserver.u2ug.org 
> >Subject: [U2] Re: WinteGrate 
> > 
> > 
> >I had saved this post for future reference. The future is here. I am 
> >trying to use WIN.PCRUN to launch internet explorer to retrieve UPS 
> >package tracking information. Their web site has changed, so 
> >I tried to 
> >paste in the new URL, but it gives me a wIntegrate message, "Unable to 
> >run specified program". This URL works if I type it in the 
> >browser. If I 
> >try to just launch the browser and view a jpeg, a simple URL 
> >(WWW.UPS.COM), or a text file, it works. Any ideas? 
> > 
> >http://wwwapps.ups.com/WebTracking/processInputRequest?HTMLVers 
> >ion=5.0&l 
> >oc=en_US&Requester=UPSHome&tracknum=1Z9366900308642377&AgreeToT 
> >ermsAndCo 
> >nditions=yes&track.x=22&track.y=9 
> > 
> >Thanks. Steve 
> >Unidata/HP-UX 
> > 
> >-Original Message- 
> >From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
> >On Behalf Of Mark Johnson 
> >Sent: Saturday, February 21, 2004 12:23 PM 
> >To: U2 Users Discussion List 
> >Subject: Re: WinteGrate 
> > 
> >A simpler way would be: 
> > 
> >PCFILE="C:\FOLDER\PICTURE.JPEG" 
> >CALL WIN.PCRUN("IEXPLORE", PCFILE) 
> > 
> >It opens up a new window with the aforementioned picture. 
> > 
> >You can also pass URL's that you fabricate to open up very useful 
> >windows. 
> >Two that i use are: 
> > 
> >www.maps.yahoo.com\&address=123&main&street&zip=12345 
> > 
> >and 
> >www.ups.com/tracking/1Z12345678901234567 
> > 
> >These are fictious urls, but you can visit both UPS/Fedex and/or 
> >Mapquest/Yahoo or any other map-like site and cut & paste the real URL 
> >and 
> >modify the variable portion. Brings green screen users a little closer 
> >to 
> >the nice feel of the windows world. 
> > 
> >All of my UPS clients use the UPS concept and 3 of mine with 
> >'truck' use 
> >the 
> >map concept. 
> > 
> >my 3 cents. 
> >- Original Message - 
> >From: 
> >To: 
> >Sent: Saturday, February 21, 2004 11:39 AM 
> >Subject: Re: WinteGrate 
> > 
> > 
> >> In a message dated 2/19/2004 5:51:51 AM Pacific Standard Time, 
> >> [EMAIL PROTECTED] writes: 
> >> 
> >> > Question: Using WinteGrate, running UniVerse 10, Unix - Is 
> >there 
> >> > a way to display a 'jpeg' file in UniVerse ? 
> >> > We have trucking companies that send up 'proof of 
> >> > deliveries' in jpeg format. Our user base 
> >would love 
> >> > to be able to view them straight from UniVerse. 
> >> > 
> >> > As always, very appreciative for ideas/assistance 
> >> > 
> >> > Barry Rogen 
> >> 
> >> Barry store all the jpegs in a shared windows directory on your 
> >network 
> >> In Universe have your program tell Wintegrate to "write the following 
> >path 
> >> into the clipboard" blah blah blah (the path of the image in the 
> >shared 
> >Windows 
> >> directory) 
> >> Then in your Universe program tell Wintegrate to execute its script 
> >> "showjpg.scr" or something like that (you create this script in a 
> >shared 
> >location as 
> >> well) 
> >> The Wintegrate script merely launches whatever it finds in the 
> >clipboard 
> >> 
> >> Will Johnson 
> >> Fast Forward Technologies 
> >> -- 
> >> u2-users mailing list 
> >> u2-users@oliver.com 
> >> http://www.oliver.com/mailman/listinfo/u2-users 
> > 
> >-- 
> >u2-users mailing list 
> >u2-users@oliver.com 
> >http://www.oliver.com/mailman/listinfo/u2-users 
> >--- 
> >u2-users mailing list 
> >u2-users@listserver.u2ug.org 
> >To unsubscribe please visit http://listserver.u2ug.org/ 
> --- 
> u2-users mailing list 
> u2-users@listserver.u2ug.org 
> To unsubscribe please visit http://listserver.u2ug.org/ 
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Re: WinteGrate

2005-01-12 Thread skunzman
Bill, yes recompiled many times  - FIBR.

-- Original message -- 

> Was the UniBasic program re-compiled ? 
> 
> --Bill 
> 
> -Original Message- 
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] Behalf Of Steve Kunzman 
> Sent: Wednesday, January 12, 2005 3:19 PM 
> To: u2-users@listserver.u2ug.org 
> Subject: [U2] Re: WinteGrate 
> 
> 
> I had saved this post for future reference. The future is here. I am 
> trying to use WIN.PCRUN to launch internet explorer to retrieve UPS 
> package tracking information. Their web site has changed, so I tried to 
> paste in the new URL, but it gives me a wIntegrate message, "Unable to 
> run specified program". This URL works if I type it in the browser. If I 
> try to just launch the browser and view a jpeg, a simple URL 
> (WWW.UPS.COM), or a text file, it works. Any ideas? 
> 
> http://wwwapps.ups.com/WebTracking/processInputRequest?HTMLVersion=5.0&l 
> oc=en_US&Requester=UPSHome&tracknum=1Z9366900308642377&AgreeToTermsAndCo 
> nditions=yes&track.x=22&track.y=9 
> 
> Thanks. Steve 
> Unidata/HP-UX 
> 
> -Original Message- 
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
> On Behalf Of Mark Johnson 
> Sent: Saturday, February 21, 2004 12:23 PM 
> To: U2 Users Discussion List 
> Subject: Re: WinteGrate 
> 
> A simpler way would be: 
> 
> PCFILE="C:\FOLDER\PICTURE.JPEG" 
> CALL WIN.PCRUN("IEXPLORE", PCFILE) 
> 
> It opens up a new window with the aforementioned picture. 
> 
> You can also pass URL's that you fabricate to open up very useful 
> windows. 
> Two that i use are: 
> 
> www.maps.yahoo.com\&address=123&main&street&zip=12345 
> 
> and 
> www.ups.com/tracking/1Z12345678901234567 
> 
> These are fictious urls, but you can visit both UPS/Fedex and/or 
> Mapquest/Yahoo or any other map-like site and cut & paste the real URL 
> and 
> modify the variable portion. Brings green screen users a little closer 
> to 
> the nice feel of the windows world. 
> 
> All of my UPS clients use the UPS concept and 3 of mine with 'truck' use 
> the 
> map concept. 
> 
> my 3 cents. 
> - Original Message - 
> From: 
> To: 
> Sent: Saturday, February 21, 2004 11:39 AM 
> Subject: Re: WinteGrate 
> 
> 
> > In a message dated 2/19/2004 5:51:51 AM Pacific Standard Time, 
> > [EMAIL PROTECTED] writes: 
> > 
> > > Question: Using WinteGrate, running UniVerse 10, Unix - Is 
> there 
> > > a way to display a 'jpeg' file in UniVerse ? 
> > > We have trucking companies that send up 'proof of 
> > > deliveries' in jpeg format. Our user base would love 
> > > to be able to view them straight from UniVerse. 
> > > 
> > > As always, very appreciative for ideas/assistance 
> > > 
> > > Barry Rogen 
> > 
> > Barry store all the jpegs in a shared windows directory on your 
> network 
> > In Universe have your program tell Wintegrate to "write the following 
> path 
> > into the clipboard" blah blah blah (the path of the image in the 
> shared 
> Windows 
> > directory) 
> > Then in your Universe program tell Wintegrate to execute its script 
> > "showjpg.scr" or something like that (you create this script in a 
> shared 
> location as 
> > well) 
> > The Wintegrate script merely launches whatever it finds in the 
> clipboard 
> > 
> > Will Johnson 
> > Fast Forward Technologies 
> > -- 
> > u2-users mailing list 
> > u2-users@oliver.com 
> > http://www.oliver.com/mailman/listinfo/u2-users 
> 
> -- 
> u2-users mailing list 
> u2-users@oliver.com 
> http://www.oliver.com/mailman/listinfo/u2-users 
> --- 
> u2-users mailing list 
> u2-users@listserver.u2ug.org 
> To unsubscribe please visit http://listserver.u2ug.org/ 
> --- 
> u2-users mailing list 
> u2-users@listserver.u2ug.org 
> To unsubscribe please visit http://listserver.u2ug.org/ 
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Re: WinteGrate

2005-01-12 Thread George Gallen
do you need to quote the URL? with all those &'s and ?'s maybe
wintergate is trying to do something.

BTW, is it supposed to be wwwapps or www.apps and just a typo
for the email?

>-Original Message-
>From: [EMAIL PROTECTED]
>[mailto:[EMAIL PROTECTED] Behalf Of Steve Kunzman
>Sent: Wednesday, January 12, 2005 3:19 PM
>To: u2-users@listserver.u2ug.org
>Subject: [U2] Re: WinteGrate
>
>
>I had saved this post for future reference. The future is here. I am
>trying to use WIN.PCRUN to launch internet explorer to retrieve UPS
>package tracking information.  Their web site has changed, so
>I tried to
>paste in the new URL, but it gives me a wIntegrate message, "Unable to
>run specified program". This URL works if I type it in the
>browser. If I
>try to just launch the browser and view a jpeg, a simple URL
>(WWW.UPS.COM), or a text file, it works. Any ideas?
>
>http://wwwapps.ups.com/WebTracking/processInputRequest?HTMLVers
>ion=5.0&l
>oc=en_US&Requester=UPSHome&tracknum=1Z9366900308642377&AgreeToT
>ermsAndCo
>nditions=yes&track.x=22&track.y=9
>
>Thanks. Steve
>Unidata/HP-UX
>
>-Original Message-
>From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
>On Behalf Of Mark Johnson
>Sent: Saturday, February 21, 2004 12:23 PM
>To: U2 Users Discussion List
>Subject: Re: WinteGrate
>
>A simpler way would be:
>
>PCFILE="C:\FOLDER\PICTURE.JPEG"
>CALL WIN.PCRUN("IEXPLORE", PCFILE)
>
>It opens up a new window with the aforementioned picture.
>
>You can also pass URL's that you fabricate to open up very useful
>windows.
>Two that i use are:
>
>www.maps.yahoo.com\&address=123&main&street&zip=12345
>
>and
>www.ups.com/tracking/1Z12345678901234567
>
>These are fictious urls, but you can visit both UPS/Fedex and/or
>Mapquest/Yahoo or any other map-like site and cut & paste the real URL
>and
>modify the variable portion. Brings green screen users a little closer
>to
>the nice feel of the windows world.
>
>All of my UPS clients use the UPS concept and 3 of mine with
>'truck' use
>the
>map concept.
>
>my 3 cents.
>- Original Message -
>From: <[EMAIL PROTECTED]>
>To: 
>Sent: Saturday, February 21, 2004 11:39 AM
>Subject: Re: WinteGrate
>
>
>> In a message dated 2/19/2004 5:51:51 AM Pacific Standard Time,
>> [EMAIL PROTECTED] writes:
>>
>> >  Question:  Using WinteGrate, running UniVerse 10, Unix - Is
>there
>> > a way to display a 'jpeg' file in UniVerse ?
>> > We have trucking companies that send up 'proof of
>> > deliveries' in jpeg format. Our user base
>would love
>> > to be able to view them straight from UniVerse.
>> >
>> > As always, very appreciative for ideas/assistance
>> >
>> > Barry Rogen
>>
>> Barry store all the jpegs in a shared windows directory on your
>network
>> In Universe have your program tell Wintegrate to "write the following
>path
>> into the clipboard" blah blah blah (the path of the image in the
>shared
>Windows
>> directory)
>> Then in your Universe program tell Wintegrate to execute its script
>> "showjpg.scr" or something like that (you create this script in a
>shared
>location as
>> well)
>> The Wintegrate script merely launches whatever it finds in the
>clipboard
>>
>> Will Johnson
>> Fast Forward Technologies
>> --
>> u2-users mailing list
>> u2-users@oliver.com
>> http://www.oliver.com/mailman/listinfo/u2-users
>
>--
>u2-users mailing list
>u2-users@oliver.com
>http://www.oliver.com/mailman/listinfo/u2-users
>---
>u2-users mailing list
>u2-users@listserver.u2ug.org
>To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Re: WinteGrate

2005-01-12 Thread Brutzman, Bill
Was the UniBasic program re-compiled ?

--Bill

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Steve Kunzman
Sent: Wednesday, January 12, 2005 3:19 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] Re: WinteGrate


I had saved this post for future reference. The future is here. I am
trying to use WIN.PCRUN to launch internet explorer to retrieve UPS
package tracking information.  Their web site has changed, so I tried to
paste in the new URL, but it gives me a wIntegrate message, "Unable to
run specified program". This URL works if I type it in the browser. If I
try to just launch the browser and view a jpeg, a simple URL
(WWW.UPS.COM), or a text file, it works. Any ideas?

http://wwwapps.ups.com/WebTracking/processInputRequest?HTMLVersion=5.0&l
oc=en_US&Requester=UPSHome&tracknum=1Z9366900308642377&AgreeToTermsAndCo
nditions=yes&track.x=22&track.y=9

Thanks. Steve
Unidata/HP-UX

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Mark Johnson
Sent: Saturday, February 21, 2004 12:23 PM
To: U2 Users Discussion List
Subject: Re: WinteGrate

A simpler way would be:

PCFILE="C:\FOLDER\PICTURE.JPEG"
CALL WIN.PCRUN("IEXPLORE", PCFILE)

It opens up a new window with the aforementioned picture.

You can also pass URL's that you fabricate to open up very useful
windows.
Two that i use are:

www.maps.yahoo.com\&address=123&main&street&zip=12345

and
www.ups.com/tracking/1Z12345678901234567

These are fictious urls, but you can visit both UPS/Fedex and/or
Mapquest/Yahoo or any other map-like site and cut & paste the real URL
and
modify the variable portion. Brings green screen users a little closer
to
the nice feel of the windows world.

All of my UPS clients use the UPS concept and 3 of mine with 'truck' use
the
map concept.

my 3 cents.
- Original Message -
From: <[EMAIL PROTECTED]>
To: 
Sent: Saturday, February 21, 2004 11:39 AM
Subject: Re: WinteGrate


> In a message dated 2/19/2004 5:51:51 AM Pacific Standard Time,
> [EMAIL PROTECTED] writes:
>
> >  Question:  Using WinteGrate, running UniVerse 10, Unix - Is
there
> > a way to display a 'jpeg' file in UniVerse ?
> > We have trucking companies that send up 'proof of
> > deliveries' in jpeg format. Our user base would love
> > to be able to view them straight from UniVerse.
> >
> > As always, very appreciative for ideas/assistance
> >
> > Barry Rogen
>
> Barry store all the jpegs in a shared windows directory on your
network
> In Universe have your program tell Wintegrate to "write the following
path
> into the clipboard" blah blah blah (the path of the image in the
shared
Windows
> directory)
> Then in your Universe program tell Wintegrate to execute its script
> "showjpg.scr" or something like that (you create this script in a
shared
location as
> well)
> The Wintegrate script merely launches whatever it finds in the
clipboard
>
> Will Johnson
> Fast Forward Technologies
> --
> u2-users mailing list
> u2-users@oliver.com
> http://www.oliver.com/mailman/listinfo/u2-users

-- 
u2-users mailing list
u2-users@oliver.com
http://www.oliver.com/mailman/listinfo/u2-users
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Re: WinteGrate

2005-01-12 Thread Steve Kunzman
I had saved this post for future reference. The future is here. I am
trying to use WIN.PCRUN to launch internet explorer to retrieve UPS
package tracking information.  Their web site has changed, so I tried to
paste in the new URL, but it gives me a wIntegrate message, "Unable to
run specified program". This URL works if I type it in the browser. If I
try to just launch the browser and view a jpeg, a simple URL
(WWW.UPS.COM), or a text file, it works. Any ideas?

http://wwwapps.ups.com/WebTracking/processInputRequest?HTMLVersion=5.0&l
oc=en_US&Requester=UPSHome&tracknum=1Z9366900308642377&AgreeToTermsAndCo
nditions=yes&track.x=22&track.y=9

Thanks. Steve
Unidata/HP-UX

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Mark Johnson
Sent: Saturday, February 21, 2004 12:23 PM
To: U2 Users Discussion List
Subject: Re: WinteGrate

A simpler way would be:

PCFILE="C:\FOLDER\PICTURE.JPEG"
CALL WIN.PCRUN("IEXPLORE", PCFILE)

It opens up a new window with the aforementioned picture.

You can also pass URL's that you fabricate to open up very useful
windows.
Two that i use are:

www.maps.yahoo.com\&address=123&main&street&zip=12345

and
www.ups.com/tracking/1Z12345678901234567

These are fictious urls, but you can visit both UPS/Fedex and/or
Mapquest/Yahoo or any other map-like site and cut & paste the real URL
and
modify the variable portion. Brings green screen users a little closer
to
the nice feel of the windows world.

All of my UPS clients use the UPS concept and 3 of mine with 'truck' use
the
map concept.

my 3 cents.
- Original Message -
From: <[EMAIL PROTECTED]>
To: 
Sent: Saturday, February 21, 2004 11:39 AM
Subject: Re: WinteGrate


> In a message dated 2/19/2004 5:51:51 AM Pacific Standard Time,
> [EMAIL PROTECTED] writes:
>
> >  Question:  Using WinteGrate, running UniVerse 10, Unix - Is
there
> > a way to display a 'jpeg' file in UniVerse ?
> > We have trucking companies that send up 'proof of
> > deliveries' in jpeg format. Our user base would love
> > to be able to view them straight from UniVerse.
> >
> > As always, very appreciative for ideas/assistance
> >
> > Barry Rogen
>
> Barry store all the jpegs in a shared windows directory on your
network
> In Universe have your program tell Wintegrate to "write the following
path
> into the clipboard" blah blah blah (the path of the image in the
shared
Windows
> directory)
> Then in your Universe program tell Wintegrate to execute its script
> "showjpg.scr" or something like that (you create this script in a
shared
location as
> well)
> The Wintegrate script merely launches whatever it finds in the
clipboard
>
> Will Johnson
> Fast Forward Technologies
> --
> u2-users mailing list
> u2-users@oliver.com
> http://www.oliver.com/mailman/listinfo/u2-users

-- 
u2-users mailing list
u2-users@oliver.com
http://www.oliver.com/mailman/listinfo/u2-users
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] RE: wIntegrate

2004-10-08 Thread Less, Mirwaan (MIRW)
Hi Bill

Thank you. That helped a lot. It's working. Now I just need to play
around to import data from the host to the client.

Regards,
Mirwaan

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bill H.
Sent: 07 October 2004 06:06 PM
To: [EMAIL PROTECTED]
Subject: RE: [U2] RE: wIntegrate

Less:

To install the wIntegrate host programs do the following:

1) open a wIntegrate session and log onto the host computer
2) get to tcl (raw tcl)
3) click on Run > Script...
4) select the Host folder where the wIntegrate client is installed
5) select "inst_pgm.wis" and continue from there.

Before doing this I would always create a separate wIntegrate account.
Then
create the appropriate 'Q' pointer to the WIN.PROGS file, from the
production account, and catalog all of the WIN.PROGS.

Hope this helps.

Bill


> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Less, Mirwaan
> (MIRW)
> Sent: Thursday, October 07, 2004 4:53 AM
> To: [EMAIL PROTECTED]
> Subject: [U2] RE: wIntegrate
>
>
> Hi All
>
> We are trying to import data from our host server to a web interface.
I
> read in the wIntegrate documents some part needs to be installed on
the
> server, but no where it actually explains how to do this.
>
> Can anyone please advise?
>
> We're running Unidata 6.0.3 on Unix AIX 4.3.3.
>
> Regards,
> Mirwaan
> ---
> u2-users mailing list
> [EMAIL PROTECTED]
> To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] RE: wIntegrate

2004-10-07 Thread Bill H.
Less:

To install the wIntegrate host programs do the following:

1) open a wIntegrate session and log onto the host computer
2) get to tcl (raw tcl)
3) click on Run > Script...
4) select the Host folder where the wIntegrate client is installed
5) select "inst_pgm.wis" and continue from there.

Before doing this I would always create a separate wIntegrate account.  Then
create the appropriate 'Q' pointer to the WIN.PROGS file, from the
production account, and catalog all of the WIN.PROGS.

Hope this helps.

Bill


> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Less, Mirwaan
> (MIRW)
> Sent: Thursday, October 07, 2004 4:53 AM
> To: [EMAIL PROTECTED]
> Subject: [U2] RE: wIntegrate
>
>
> Hi All
>
> We are trying to import data from our host server to a web interface. I
> read in the wIntegrate documents some part needs to be installed on the
> server, but no where it actually explains how to do this.
>
> Can anyone please advise?
>
> We're running Unidata 6.0.3 on Unix AIX 4.3.3.
>
> Regards,
> Mirwaan
> ---
> u2-users mailing list
> [EMAIL PROTECTED]
> To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2] RE: wIntegrate

2004-10-07 Thread Less, Mirwaan (MIRW)
Hi All

We are trying to import data from our host server to a web interface. I
read in the wIntegrate documents some part needs to be installed on the
server, but no where it actually explains how to do this.

Can anyone please advise?

We're running Unidata 6.0.3 on Unix AIX 4.3.3.

Regards,
Mirwaan
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/