Ver Mensaje Individual
  #5 (permalink)  
Antiguo 04/06/2004, 13:20
Avatar de mveraa
mveraa
 
Fecha de Ingreso: diciembre-2002
Ubicación: santiago-chilito
Mensajes: 1.931
Antigüedad: 22 años, 1 mes
Puntos: 2
De acuerdo

Dim oIE As Object , cCad As String
Set oIE = CreateObject("InternetExplorer.Application")

'user y clave a enviar

user1 = encriptar_WEB(fconfigurar.Text1(0).Text)
clave1 = encriptar_WEB(fconfigurar.Text1(1).Text)



cCad = "http://www.mipag.cl/ingreso.php?user=" + user1 _
+ "&clave=" + clave1



oIE.MenuBar = True
oIE.TOOLBAR = True
oIE.Visible = False
oIE.Navigate2 (cCad)

While (oIE.BUSY = True)


Wend



bueno eso manda datos a php en el caso tuyo es lo mismo , pero ojo si mandas claves te recomiendo que las encriptes puestos que se quedan en el historial del navegador...

ojala te sirva saludos