Click here to Skip to main content
15,919,931 members
Home / Discussions / C#
   

C#

 
AnswerRe: Network cable status notification Pin
Scott Dorman15-Nov-06 7:48
professionalScott Dorman15-Nov-06 7:48 
QuestionCreate Process With User Info Pin
Ferudun Atakan14-Nov-06 23:21
Ferudun Atakan14-Nov-06 23:21 
AnswerRe: Create Process With User Info Pin
Stefan Troschuetz15-Nov-06 0:03
Stefan Troschuetz15-Nov-06 0:03 
GeneralRe: Create Process With User Info Pin
Ferudun Atakan15-Nov-06 1:14
Ferudun Atakan15-Nov-06 1:14 
GeneralRe: Create Process With User Info Pin
Stefan Troschuetz15-Nov-06 1:26
Stefan Troschuetz15-Nov-06 1:26 
GeneralRe: Create Process With User Info Pin
Ferudun Atakan15-Nov-06 1:59
Ferudun Atakan15-Nov-06 1:59 
GeneralRe: Create Process With User Info Pin
Stefan Troschuetz15-Nov-06 2:16
Stefan Troschuetz15-Nov-06 2:16 
QuestionConnected to the network or not? Pin
mertkan6514-Nov-06 23:17
mertkan6514-Nov-06 23:17 
Hi all,

I want to check whether computer is connected to the network or not. I use a boolean method IsNetworkConnected() as shown below. I wonder if this method is OK, if not can you suggest any method?

public bool IsNetworkConnected()<br />
        {<br />
            IPAddress IPAd;<br />
            ipHostInfo = Dns.GetHostEntry(Dns.GetHostName());<br />
            IPAd = ipHostInfo.AddressList[0];<br />
<br />
            if (IPAd.ToString() == "127.0.0.1")<br />
            {<br />
                return false;<br />
            }<br />
            else<br />
            {<br />
                return true;<br />
            }<br />
        }<br />

AnswerRe: Connected to the network or not? Pin
saqib8214-Nov-06 23:51
saqib8214-Nov-06 23:51 
AnswerRe: Connected to the network or not? Pin
Scott Dorman15-Nov-06 8:07
professionalScott Dorman15-Nov-06 8:07 
GeneralRe: Connected to the network or not? Pin
mertkan6515-Nov-06 9:13
mertkan6515-Nov-06 9:13 
QuestionDirectoryInfo 1.1 vs 2.0 on UNC paths, strange error Pin
mjma14-Nov-06 23:10
mjma14-Nov-06 23:10 
QuestionFile conversion, need help Pin
Shriya Kapoor14-Nov-06 22:21
Shriya Kapoor14-Nov-06 22:21 
AnswerRe: File conversion, need help Pin
Guffa14-Nov-06 23:07
Guffa14-Nov-06 23:07 
GeneralRe: File conversion, need help Pin
Shriya Kapoor14-Nov-06 23:28
Shriya Kapoor14-Nov-06 23:28 
GeneralRe: File conversion, need help Pin
Shriya Kapoor14-Nov-06 23:30
Shriya Kapoor14-Nov-06 23:30 
QuestionSQLCommand and DataSet Pin
pinebranch14-Nov-06 21:53
pinebranch14-Nov-06 21:53 
AnswerRe: SQLCommand and DataSet Pin
rah_sin15-Nov-06 0:02
professionalrah_sin15-Nov-06 0:02 
QuestionSliding Menu Builder for Windows Application Pin
samtam14-Nov-06 21:23
samtam14-Nov-06 21:23 
QuestionSystem.Media.SoundPlayer Help Pin
AB777114-Nov-06 20:57
AB777114-Nov-06 20:57 
QuestionEventLog in framework 2.0 Pin
ranandbe14-Nov-06 20:48
ranandbe14-Nov-06 20:48 
QuestionNeed Correction Pin
M Riaz Bashir14-Nov-06 20:23
M Riaz Bashir14-Nov-06 20:23 
GeneralRe: Need Correction Pin
Guffa14-Nov-06 20:42
Guffa14-Nov-06 20:42 
GeneralRe: Need Correction Pin
M Riaz Bashir14-Nov-06 20:46
M Riaz Bashir14-Nov-06 20:46 
AnswerRe: Need Correction Pin
Guffa14-Nov-06 23:20
Guffa14-Nov-06 23:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.