VS 2008 My.Computer.Network.Ping() Cannot See Network Under Windows 7

Nov 18, 2011

I have a .NET 2.0 *.dll that calls My.Computer.Network.Ping(). The *.dll is then run out of an *.exe via AppDomain.CreateDomain() and Invoke(). The problem is that this works just fine under Windows XP but under Windows 7, I get an exception saying that no network connection is available. I tried the Ping() call out of a small console application under Windows 7 and it works just fine.

[Code]....

View 6 Replies


ADVERTISEMENT

Transfer Files From One Computer In One Network To Another Computer With A Totally Different Network

Jun 22, 2011

I have a problem I want to make a server and client where the server is password protected and will make the client display files/folders in a designated folder which will be in the server's current directory and the client will ask what IP and password to connect to and if the password is correct is allows the client to access the files/folders in that folder in C.D. of the server and the client can download any file within the folder by clicking a button, yet don't even know where to start.

View 7 Replies

VS 2008 Network App - Send Message Or Network Package To Some Of The Clients In The Network

Aug 18, 2009

Here is my idea so far: I have a bunch of computers connected in a local network. One of them is a MySQL server, one will have a vb.NET program wich will act as a "second server" and the rest will be different clients. What I want to do is that the "second server" will send out some kind of message or network package to some of the clients in the network, and they will execute a code based on what message it is, or what kind of package it is. I'll give you a simple example:

[Code]...

View 6 Replies

VS 2008 Developing A Network / Server Ping Status App

Jan 3, 2010

I work as an IT Administrator and manage a few Servers, Routers, VPN Connections over a number if locations. What I am wanting to do is create a vb.net app that will go out and ping say every 2-5mins each of the servers, routers, that are listed and then shows beside the Hostname a Green Circle which means online and if its a Red Circle its offline, and the screen refreshes if their is a problem or a device / service comes back online.

Then if its offline email a particular email address showing the hostname of either the server or router and which location saying its offline. If possible to make it easier to change the devices to show possible have a txt file or something like that with the Hostname, IP Address, Location.

View 2 Replies

Ping If Network Is Available?

Jun 10, 2011

I'm currently doing my project to check my server status with ping option. but i got problem to check either the network is plugged or unplugged...I need this checking automaticly using timer...here what i have done....to ping the server is success but when pulgged back the network...error come around..

Private Sub Timer4_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer4.Tick
Timer4.Interval = 30000
If My.Computer.Network.IsAvailable Then
If My.Computer.Network.Ping("www.mine.my", 500) Then

[code].....

View 2 Replies

VS 2008 Computer.Network.DownloadFile()?

Dec 10, 2011

My.Computer.Network.DownloadFile("http://MyDomain.info/MyFile.zip", SaveFileDialog)Hi, the above don't work, what i need is for it to popup a savedialog for the user to browser for a location to download the file

View 4 Replies

VS 2008 Continuous Progressbar While My.Computer.Network.Download

Nov 7, 2009

Have a small problem, but I can't seem to solve it. Hopefully someone could help me out.

While downloading a file from my server I have a progressbar which should scroll continuously, but it doesn't do anything.

The code I use:

vb.net
Private Sub btn_download_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_download.Click
With progress ' progress is the name of the progressbar

[Code]...

View 2 Replies

Communications :: Write A Program To Ping Computers On Network To See If They Are Turned On?

Jul 4, 2008

I am trying to write a program to ping computers on my network to see if they are turned on. So far i have the following:

Code:

If My.Computer.Network.Ping("192.68.0.5") Then
MsgBox("Computer is on.")
Else
MsgBox("Ping request timed out.")
End If

If i use ip addresses, this works fine but i would rather use hostnames due to the ip addresses being dynamic (something which is outside my control). Using the hostname, it reurns "Computer is on" if the ping is successful, but if the hostname cannot be found, instead on returning "Ping request timed out", an error occurs as follows:

A first chance exception of type 'System.Net.NetworkInformation.PingException' occurred in System.dll

View 2 Replies

VS 2008 Displaying Data On More Than One Network Computer In Real Time?

May 2, 2009

I am busy with a VB2008 EXPRESS program that reads is data via a network cable. Saving the data on the same computer as my program is not a problem, but I must also make this data available to other users in the network and update their screens in real time. In other words I need a COPY of my running program on each networked computer when requested by the user in the network. I have looked at SQL, XML pages and inheritance. But I am confused, what is the best way???

View 13 Replies

VS 2008 My.Computer.Network.DownloadFile - Get Rid Of The File When A Users Cancel

May 7, 2011

I use this line to download files: My.Computer.Network.DownloadFile(VideoFilename, SaveLocation, "", "", True, 8000, True But if a users cancel the download my application crashes. I searched Google but there's very little info about this problem. I tried with: My.Computer.Network.DownloadFile(FilenameMP3, SaveLocation, "", "", True, 8000, True, FileIO.UICancelOption.ThrowException, FileIO.RecycleOption.SendToRecycleBin()) But that line of code doesn't work. I need to get rid of the file when a users cancel

View 1 Replies

Send A Message To Another Computer Screen In Network Using Visual Studio 2008?

Jun 11, 2011

how to send a message to another computer in my companys network using visual studio 2008...I would like to be able to list all the computer names on the network and select certain ones and send them a message that would pop up on their screen

View 3 Replies

Sockets - Check That If Another Computer In The Network Send Some String Data To The Listener Computer?

Mar 19, 2012

i have a task to create a TCP Server (a program that is listening on its network card interfaces for incoming data stream).I have search on the internet and i found that i can use two methods : Socket or TCPListener class.I have created an example for Socket class, but i wondering how could i test it? I need to check that if another computer in the network send some string data to the listener computer , then this message should be displayed.Here is the example from microsoft that i am using for TCP Server using Socket:

Public Shared Sub Main()
' Data buffer for incoming data.
Dim data = nothingc[code]....

But it does not work because of the PORT setting.If in the TCP Server i have "Dim localEndPoint As New IPEndPoint(ipAddress, 0)" the client crashes, but if i change the port from any (0) to 11000 for example,the client works fine.Do you know why?

Later edit2:Maybe i should have started with this question:Which method is recommended for my scope?asynchronous or synchronous method ?

View 2 Replies

VS 2008 My.Computer.Network.Downloadfile - Test A Files Date Modified Before Downloading It

Oct 18, 2009

I have read about Network.Downloadfile and I think I understand it! I want to know if there is an easy way to test a files date modified before downloading it. I have a lot of files in the folder. I really want to "sync" the folder. I don't want to copy every file every time I want to only download the file if I don't have the file in the destination location or if I have an Old copy.

View 4 Replies

Developing A Computer Application Designed To Monitor The Network And CPU Statistics On A Computer?

Jan 29, 2009

I am developing a computer application designed to monitor the network and CPU statistics on a computer remotely. The monitored computer would have my program installed and the monitoring computer would display, in a form, the information being sent from the remote client.The application does not send any information regarding packets, user names, passwords, etc. It is solely meant for monitoring CPU performance and Network resources remotely.

What would be the best method to send this information over to my host machine?I am programing in Visual Studio 2008 on windows XP. The client machine is also XP. I know this sounds a little shady, but it is required for my little business (http://www.iquorum.net) to monitor what and when something happens on our machines when I and my employees are away.

View 2 Replies

Copy A File From A Local Computer To A Remote Computer On The Network?

Dec 19, 2006

I need to copy a file from a local computer to a remote computer on the network, if i try to use File.Copy without logon i get the following error:"Logon failure: unknown user name or bad password."How do I provide user name and password for file copy?

View 2 Replies

VS 2008 Copy File To Network With Windows Service

Dec 9, 2009

I am working on a backup utility for use with the mysql db. Because I need the actual backup to run regardless of if a user is logged on or not, I created the backup engine in a windows service.

Basically the backup engine checks to see if a backup job is scheduled to be run and if it is, it kicks off a mysqldump to do the backup. For sake of performance I am saving all backup jobs to the local c: drive then doing a file copy to the user defined destination.

Everything works fine except for the file copy. If the user selects a local resource to the computer it works fine. However, if a network drive is selected, I get an error that it cannot find the path.

I started thinking about it and believe this is expected since the backup engine is probably oblivious to whatever mapped drives that particular user has, i.e. the mapping process is done when someone logs in and my app is running at a lower level.

I started doing some research on this problem and found that some people are saying that windows services are oblivious of networks all together. This seemed a little odd to me so I thought I would bring the issue here.

Is a windows service truely unaware of network activity? How can I change the program to move the completed backups over to a network drive?

View 5 Replies

Detect All Computer In Network

Nov 15, 2005

can anybody teach me how to do that(I'm newbie in network programming), to detect all the computer name's list in the network(LAN with(out) domain) and also the IP's list of the computers.

View 30 Replies

Determine The Network Name Of Computer?

May 20, 2011

How do i determine the network name of my computer?

View 2 Replies

Shutting Down Network Computer Through WMI?

Jul 25, 2010

Im trying to shut down the other PC on my local network through VB.net.. But whenever I run it.. It always says " CANNOT CREATE ACTIVEX ".. How can i solved this problem? By the way im using Windows XP..

Dim strComputer
Do
strComputer = InputBox("Please enter the computer name you want to reboot", "Input")

[code].....

View 3 Replies

.net - Computer Names On A Network, Computer.name?

Mar 15, 2012

The way we get my.computer.name, can we also get the name of all computers on a network?

View 1 Replies

Get Computer Description From Computer In Network?

Nov 24, 2009

i have a list of Hostnames from computers in my network and now i want to know how i can get the computer-description from these computers.

View 3 Replies

Comparison To A File On A Different Computer On The Same Network

Jan 4, 2012

I have a computer that takes in a barcode through a Visual Basic program on one computer and I want to be able to compare that barcode as a String to data on a different computer on the same network by ethernet connection where the data is stored in an Excel 2010 file (.xlsm) in Column A in a workbook called 'Data.xlsm'. Before the data is allowed to be saved or used further in the program on the first computer, I would like for the comparison to happen.

Some more details that you all may or may not need.

Computer 1 (where barcode is scanned): Windows 7, Office 2010

Computer 2 (where data file is stored): Windows XP, Office 2007

View 12 Replies

Computer.Network.UploadFile Error 404 On IIS 7.0?

Dec 3, 2010

i'm trying to upload an image from a vb form with theMy.Computer.Network.UploadFile, but the system responde me with error 404.Here is the code i'm using.Dim siteUri As New Uri("http://localhost:80/users/user_6/prova.jpg")Dim localuri As String = "D:calendariSonia.jpg"

View 6 Replies

Incomplete - Computer.Network.UploadFile?

Feb 8, 2011

Incomplete - Computer.Network.UploadFile?

View 5 Replies

List (ONLY Online) Computer In A Network?

Dec 29, 2011

I'm working in a project and i need to list only the online computers in my network and put them in a listbox how can i do this

View 5 Replies

My.computer.network.uploadfile() Not Responding

Jan 20, 2012

[Code]...

This code is put within a timer that executes every 3 seconds. ( instead of a while loop ) Whenever I run this code, the program takes time to upload the files in the folder to the ftp server, and it becomes (not responding), but it doesn't stop working, after the "not reponding" message, it reponds, but then it becomes not responding.. this is making the uploading process very Slow. I've heard so many things about application.doevents() and Threading and etc.

View 16 Replies

Send Message To Another Computer Using LAN Or Network?

Oct 20, 2010

to do a program that can send a message in other computerthru LaN or Computer NetworkExample im in Server and i will send it is \PC-01here is the picture i design it but i don't know the code

View 1 Replies

SQL Server Name On Local Computer Not Network?

Jul 18, 2012

how to find the list of SQL servers on the local machine...and not the network...

I searched in google but everywhere its for the list of SQL servers on network....I just want my PC SQL server name....

View 4 Replies

Use My.Computer.Network.DownloadFile In An Access Db?

Mar 24, 2012

I'm trying to download a file from the internet by clicking a button in MS Access.

I'm trying to use My.Computer.Network.DownloadFile as described here: [URL]

Private Sub Command2_Click()
My.Computer.Network.DownloadFile("http://www.example.com/temp/xml_test.xml", "C:xml_test.xml")
End Sub

but the 'Microsoft Visual Basic for Applications' IDE that I'm typing this into seems to have no idea what I'm talking about (text just turns red).

Can I just not do this through the built in VB editor or can I simply load a library or something to make it work?

Sorry but I'm very new to VB and to Access so search results are not specific enough for me to understand - lord knows I've tried.

I'm using Access 2010 but the DB was created in an previous version - not sure if that matters.

View 1 Replies

VS 2008 : Get Network Computer's Printer List And Printer Info?

Dec 7, 2009

get a list of printer's (name,port,model) from a computer over the network. I know how to list my own, but it's from querying the Win32_printer object on my machine, I need to be able to do something similar on a remote machine.

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved