View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Ron de Bruin Ron de Bruin is offline
external usenet poster
 
Posts: 11,123
Default Upload file to the internet

Hi Jos

Try something like this

Dim oBk As Workbook
Set oBk = ActiveWorkbook
oBk.SaveAs "http://www.rondebruin.com/tester.xls"


--
Regards Ron de Bruin
http://www.rondebruin.nl


"Jos Vens" wrote in message ...
Hi,

I would like to know if it is possible to let my user upload an excel-file to my website. Each user has a specific datafile
(data.xls). Now he sends it to me and I upload it in his directory on my website, but it would be very useful if i can give him
direct access via vba to upload the file (I can code my website-password to give him access)

Any help is appreciated!
Jos Vens