dbarbarian
Programmer
Hi. First time posting here.
I just dove into VBA recently in Excel 2003 and I have a small problem. I would like to create a socket connection to a target URL and be able to stream data to it and from it. However, after searching for 2 days, I came up with nothing.
Objects and methods like the ones in VB or C# would be nice. For example:
Stream in = new FileStream(inFile, FileMode, FileAccess);
Stream out = new FileStream(outFile, FileMode, FileAccess);
CookieContainer cookies = new CookieContainer();
HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(url);
But I haven't found anything that can achieve what that does.
Any ideas?
Thanks in advance,
DBarbarian
I just dove into VBA recently in Excel 2003 and I have a small problem. I would like to create a socket connection to a target URL and be able to stream data to it and from it. However, after searching for 2 days, I came up with nothing.
Objects and methods like the ones in VB or C# would be nice. For example:
Stream in = new FileStream(inFile, FileMode, FileAccess);
Stream out = new FileStream(outFile, FileMode, FileAccess);
CookieContainer cookies = new CookieContainer();
HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(url);
But I haven't found anything that can achieve what that does.
Any ideas?
Thanks in advance,
DBarbarian