DIRECCIONAR UN HREF EN VISUAL BASIC
Podria alguien decirme como direccionar un href a una variable, por ejemplo:
variable1=http://www.google.com
<html>
< a href=variable1>
gracias...
variable1=http://www.google.com
<html>
< a href=variable1>
gracias...
Hola,
hablamos de vb6?
Puedes hacerlo asÃ...
Dim variable As String
Dim ie As Object
variable = "http://boards.melodysoft.com/sdemingo"
Set ie = CreateObject("InternetExplorer.Application")
ie.Visible = True
ie.Navigate variable
Salu2
sdemingo
http://boards.melodysoft.com/sdemingo
hablamos de vb6?
Puedes hacerlo asÃ...
Dim variable As String
Dim ie As Object
variable = "http://boards.melodysoft.com/sdemingo"
Set ie = CreateObject("InternetExplorer.Application")
ie.Visible = True
ie.Navigate variable
Salu2
sdemingo
http://boards.melodysoft.com/sdemingo
