Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 33
Default Detecting a network connection

I need to be able to detect whether or not a computer is
connected to a network when the excel application I am
working on is opened. The application is going to run on a
tablet PC that will not always be connected to a network.
I want to automatically refresh imported information when
the application opens but only if a network connection is
available. Has anyone ever done this?

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 599
Default Detecting a network connection

Eric

Will you know the path to the network? If so, you can attempt to use the
ChDir command to change to that path and trap the error if the path doesn't
exist.

On Error Resume Next

ChDir "S:\"

If Err.Number = 76 Then
'Not connected
Else
'Connected
End If

--
Dick Kusleika
MVP - Excel
www.dicks-clicks.com
Post all replies to the newsgroup.

"Eric" wrote in message
...
I need to be able to detect whether or not a computer is
connected to a network when the excel application I am
working on is opened. The application is going to run on a
tablet PC that will not always be connected to a network.
I want to automatically refresh imported information when
the application opens but only if a network connection is
available. Has anyone ever done this?



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Network connection for query ken Excel Discussion (Misc queries) 0 February 12th 10 07:43 AM
always recheck data connection library for latest connection strin FurmanGG Excel Discussion (Misc queries) 0 September 14th 07 04:48 PM
missing network connection dsdproduction Excel Discussion (Misc queries) 0 July 5th 07 02:36 PM
Checking if you have a network connection clayton Excel Discussion (Misc queries) 0 May 31st 06 04:31 PM
Connection error to network drive dmlw96 Excel Discussion (Misc queries) 0 September 30th 05 08:24 PM


All times are GMT +1. The time now is 12:25 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"