Welcome To The Home Of The Visual FoxPro Experts  
home. signup. forum. archives. search. articles. downloads. faq. members. files. rss.
 From: Mike Gagnon
  Where is Mike Gagnon?
 Pointe Claire
 Canada
 Mike Gagnon
 To: Gagi
  Where is Gagi?
 Siklos
 Hungary
 Gagi
Subject: RE: Net4Com problem
Thread ID: 103138 Message ID: 103672 # Views: 2 # Ratings: 1
Version: Visual FoxPro 9 Category: .NET
Date: Monday, August 7, 2006 12:10:57 PM         
   



These functionalities are already available without NET4COM.
1. There many version on the Net for pigning
2. Use the API InternetGetConnectedState to check the internet connection status.
3. There are many ways of downloading a file from the internet.

I am not sure why NET4COM is not working for you but as Boudewijn says it is still being worked on and is only in beta.

Mike Gagnon



> > > 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


ENTIRE THREAD

Net4Com problem Posted by Gagi @ 8/1/2006 10:23:42 PM
RE: Net4Com problem Posted by Boudewijn Lutgerink @ 8/7/2006 7:51:24 AM
RE: Net4Com problem Posted by Juan Antonio Santana @ 8/7/2006 9:30:37 AM
RE: Net4Com problem Posted by Gagi @ 8/7/2006 11:28:17 AM
RE: Net4Com problem Posted by Mike Gagnon @ 8/7/2006 12:10:57 PM