Hi Guys,

In a classic example of invoking IE using Objects such as the following:
*---
PROCEDURE Main
  local cUrl := "http://www.harbour-project.org";
  local oOLE

  BEGIN SEQUENCE WITH { |oErr| Break( oErr )}
     oOLE := GetActiveObject( "InternetExplorer.Application" )
  RECOVER
     BEGIN SEQUENCE WITH { |oErr| Break( oErr )}
        oOLE := CreateObject( "InternetExplorer.Application" )
     RECOVER
        Alert( "Error: IExplorer A not available. [" + Ole2TxtError()+ "]" )
     END SEQUENCE
  END SEQUENCE

  oOLE:Visible := .T.
  oOLE:Navigate(cUrl)
  inkey(0)
  oOle:quit()
RETURN
*---

How could I use FireFox instead of Internet Explorer.

Thanks,
Ed

-- 
View this message in context: 
http://www.nabble.com/About-OLE-tp17858071p17858071.html
Sent from the Harbour - Dev mailing list archive at Nabble.com.

_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to