Not sure if this is possible but I want to open a textfile from my server, it is available through a http request http:\\192.168.100.5\database\database.txt
I was thinking of downloading it to a temp location, opening it, reading the data to an array.
Does this seem ok?
So far I have;
Dim hc As HttpClient
hc.Initialize("hc")
Dim req As HttpRequest
req.InitializeGet("http://192.168.100.5/database/database.txt")
hc.Execute(req, 0)
It seems to work but I cant find the downloaded file
I was thinking of downloading it to a temp location, opening it, reading the data to an array.
Does this seem ok?
So far I have;
Dim hc As HttpClient
hc.Initialize("hc")
Dim req As HttpRequest
req.InitializeGet("http://192.168.100.5/database/database.txt")
hc.Execute(req, 0)
It seems to work but I cant find the downloaded file