From: pramod.mahadev@ustra.mail.abb.com
Subject: Forms 5.0 Help with Navigate function of web browser activeX component
Date: 1998/02/02
Message-ID: <886437961.473825290@dejanews.com>#1/1
X-Originating-IP-Addr: 130.110.218.66 (nt4272.sc.ustra.abb.com)
X-Authenticated-Sender: pramod.mahadev@ustra.mail.abb.com
X-Http-User-Agent: Mozilla/4.04 [en] (WinNT; I)
Organization: Deja News Posting Service
X-Article-Creation-Date: Mon Feb 02 16:46:01 1998 GMT
Newsgroups: comp.databases.oracle.misc



Hi there,
 I am trying to call the Navigate function provided
 in the web browser activeX component. I was successful in
 using the function to go to a web site. The code to do that
 is  as follows:
DECLARE
  HeaderData OleVar;
  FileData Varchar2(20000);
BEGIN

FileData := 'USERID=BBOX03&PASSWORD=BBOX03&QUERY_TYPE=COMMITMENT_HISTORY';

INTERNETEXPLORER_IWEBBR_3.Navigate(:item('BLOCK3.ACTIVEX_CONTROL4').interface,
'http://www.netscape.com', OleVar_Null,
OleVar_Null, OleVar_Null, OleVar_Null);

END;

Now I am trying to pass FileData as a parameter to this
function. From the prototype definition of the function,
the 5th argument can be FileData, but it must be of the
type OleVar. What do I do to convert FileData to OleVar
so that my cgi-program recieves the data.
Thanks
Pramod

-------------------==== Posted via Deja News ====-----------------------
      http://www.dejanews.com/     Search, Read, Post to Usenet


