> > Hello!
> >
> > I installed Vfp Sedna.
> > I would like to use the classes of the NET4COM library at runtime on other computers. How can I integrate it in the Install procedure?
> >
> > Please help me.
> >
> > Thanks.
>
> Are you sure you want to use a beta product in a version of the software you ship? I would NEVER do that. Although the offered stuff is nice already I will wait for a stable sedna version and only then ship my software with that, whenever needed.
>
> Boudewijn Lutge®ink
> If it ain't a Border Collie it's just a dog...
Hello!
Thanks, the answer but I need only one think of VFP SEDNA. This is the NET4COM. I would like to help for my customers with a new function. They can click to a button then the program gives them some messages from the Internet.
Have You got some Idea whit it or other?
Thanks.
CLEAR
LOCAL x AS NET4COM.INetwork
x=CREATEOBJECT("NET4COM.Network")
? IIF(x.IsAvailable(),"Network is available","Network is NOT available")
? IIF(x.Ping("localhost"),"Ping successful","Ping UNseccessful")
? "Downloading file..."
* x.DownloadFile("http://.......","_output.txt")
?? "Complete."
MODIFY FILE _output.txt
ERASE _output.txt
RETURN