Ver Mensaje Individual
  #1 (permalink)  
Antiguo 08/06/2010, 06:21
Avatar de angel1993
angel1993
 
Fecha de Ingreso: octubre-2009
Mensajes: 752
Antigüedad: 15 años, 5 meses
Puntos: 22
duda key down

Bueno tengo lo siguiente
Código ASP:
Ver original
  1. Private Sub w_Navigating(ByVal sender As Object, ByVal e As System.Windows.Forms.WebBrowserNavigatingEventArgs) Handles w.Navigating
  2.  
  3.         Dim wc As System.Net.WebClient = New System.Net.WebClient
  4.  
  5.         Dim texto$ = wc.DownloadString(e.Url)
  6.         Dim ff% = FreeFile()
  7.         FileOpen(ff, "c:\iniciotemp.html", OpenMode.Output)
  8.         PrintLine(ff, texto)
  9.         FileClose(ff)
  10.         w.Navigate("file://c:\iniciotemp.html")
  11. end sub

osea codigo de fuente que lee codigo de fuente que descarga, quiero que al pulsar CTRL no descarge seria algo así como poner un if y tal, he leido pero me cambian el byval e o no se que movidas.. me lia un monton..