Devo importare un file di testo (o HTML) da un sito web per aggiornare una tabella.. come posso fare??
Devo importare un file di testo (o HTML) da un sito web per aggiornare una tabella.. come posso fare??
MEMENTO AUDERE SEMPER
Maxxl
www.maxxl.it
Se interessa a qualcuno ho risolto..
myURL = "http://www.miosito.it/fileditesto.txt"
Set XMLHTTP = CreateObject("MSXML2.XMLHTTP")
XMLHTTP.Open "GET", myURL, False
XMLHTTP.send dapage
dapage = XMLHTTP.responseText
Set XMLHTTP = Nothing
miaVar = Split(dapage, ";", -1, 0)
testo.Value = miaVar(0)
CIAOOOOOOOOOOO![]()
![]()
MEMENTO AUDERE SEMPER
Maxxl
www.maxxl.it