Active X Explorer
-
- Posts: 42
- Joined: Sat Sep 30, 2006 9:43 am
Active X Explorer
http://nolp.dhl.de/nextt-online-public/track.do?lang=de
This a tracking Page from DHL
How can i put Data from a dbf into Fields in Internet Explorer ?
Tx
This a tracking Page from DHL
How can i put Data from a dbf into Fields in Internet Explorer ?
Tx
Amiguinho
You can try a ASP Script, submiting data with GET METHOD:
Fivewin code:
You can try a ASP Script, submiting data with GET METHOD:
Code: Select all
<%@LANGUAGE = VBScript%>
<%
Dim nome,senha
nome = replace(request.form("nome"), "'", "''")
senha = replace(request.form("senha"), "'", "''")
Set DB = Server.CreateObject("ADODB.Connection")
cnpath="DBQ=" & server.mappath(".\")
DB.Open "Driver={Microsoft dBase Driver (*.dbf)};;" & cnpath
inserir = "INSERT INTO users (nome,senha) " & _
"VALUES ('" & nome & "','" & senha & "','" & pagina & "')"
DB.Execute(inserir)
%>
Code: Select all
STATIC FUNCTION NAVEGAR( MyName, MyPass )
local hE
hE := CreateOleObject("InternetExplorer.Application")
OLESetProperty(hE,"Visible" , .T.)
OLESetProperty(hE,"ToolBar" , .F.)
OLESetProperty(hE,"StatusBar", .T.)
OLESetProperty(hE,"MenuBar" , .T.)
OLEInvoke(hE,"Navigate","http://www.YourSite.com/adiciona.asp?nome="+MyName+"&senha="+MyPass)
SysRefresh()
return nil
-
- Posts: 42
- Joined: Sat Sep 30, 2006 9:43 am
Tx
I will try it !!!
is it also possible with active x ???
tx
is it also possible with active x ???
tx
yes there is an sample on this forum but the method *DO* not run well or we not Know how make active the component of the activex
see this
http://fivetechsoft.com/forums/viewtopi ... highlight=
see this
http://fivetechsoft.com/forums/viewtopi ... highlight=
Best Regards, Saludos
Falconi Silvio
Falconi Silvio
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
ok Antonio,
these commands not run ok
oActiveX:SetProp( "StatusBar", .T. ) // not run ???
oActiveX:SetProp( "AddressBar", .T. ) // not run ???
oActiveX:SetProp( "ToolBar", .T. ) // not run ???
oActiveX:SetProp( "LinksBar", .T. ) // not run ???
oActiveX:SetProp( "ToolbarOptions", .T. ) // not run ???
---------------------------------------------------------------------------
these commands not run ok
oActiveX:SetProp( "StatusBar", .T. ) // not run ???
oActiveX:SetProp( "AddressBar", .T. ) // not run ???
oActiveX:SetProp( "ToolBar", .T. ) // not run ???
oActiveX:SetProp( "LinksBar", .T. ) // not run ???
oActiveX:SetProp( "ToolbarOptions", .T. ) // not run ???
---------------------------------------------------------------------------
Best Regards, Saludos
Falconi Silvio
Falconi Silvio
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
-
- Posts: 42
- Joined: Sat Sep 30, 2006 9:43 am
Anyone read the question ???
Anyone read the question ???
-:)
-:)
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
-
- Posts: 42
- Joined: Sat Sep 30, 2006 9:43 am
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact: