Visualizzazione dei risultati da 1 a 2 su 2
  1. #1

    [VBA/OFFICE] Importazione da access

    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

  2. #2
    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

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.