ibmi-brunch-learn

Announcement

Collapse
No announcement yet.

IEXPLORE.EXE In New Browser

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • IEXPLORE.EXE In New Browser

    I have an application that is used to track UPS shipments. When the user presses a function key, I pass the tracking information to bring up the UPS site.

    I'd like the UPS site to be in a new instance of the browser. However, what is happening is that a new instance of the browser starts, but the UPS site comes up in the current browser. Is there any way in a BAT file to force it to use the new instance? Here's the BAT file that I am running.

    Thanks

    @echo off
    START /I IEXPLORE.EXE
    START /MAX /B ^
    HTTP://wwwapps.ups.com/WebTracking/processRequest?HTMLVersion=5.0^
    &Requester=NES^
    &AgreeToTermsAndConditions=yes^
    &loc=en_US^
    &tracknum=%1
    EXIT

  • #2
    Re: IEXPLORE.EXE In New Browser

    Hello,

    try this BAT-File instead (3 Lines) and give report...

    @echo off
    START /I IEXPLORE.EXE HTTP://wwwapps.ups.com/WebTracking/processRequest?HTMLVersion=5.0^ &Requester=NES^ &AgreeToTermsAndConditions=yes^ &loc=en_US^ &tracknum=%1
    EXIT
    kuempi

    Comment


    • #3
      Re: IEXPLORE.EXE In New Browser

      That did the trick.

      Thanks.

      Comment

      Working...
      X