Thanks
Brian
MessageBox("HTML" String(data))
4. Create a window w_test which uses up_internetdata
5. declare an instance variable of the type uo_internetdata
uo_internetdata iuo_internetdata
and another of type Inet
Inet iInet_base
6. In open event of w_test create iuo_internetdata
7. Lets say U want to retrieve the HTML from www.sybase.com
8. Place a button on the w_test and in the clicked event of the button put
the following code
string ls_url
ls_url = "http://www.sybase.com"
GetContextService("Internet", iInet_base)
iInet_base.GetUrl(ls_url, iuo_internetdata)
At this point the HTML will be displayed in the message box
The above is a bare bones code U would write to get HTML from a URL using
GetURL. Modify per UR requirements
HTH
Ramesh
Brian <qu...@ocar.army.pentagon.mil> wrote in message
news:3729CD80...@ocar.army.pentagon.mil...