Click here to Skip to main content
15,892,674 members
Home / Discussions / C#
   

C#

 
GeneralRe: need help!! Pin
JulietPlando12-Mar-06 14:39
JulietPlando12-Mar-06 14:39 
GeneralRe: need help!! Pin
Steve Pullan12-Mar-06 15:00
Steve Pullan12-Mar-06 15:00 
Questionhow can i get the ip addres of host on windows application Pin
sa_keles12-Mar-06 12:55
sa_keles12-Mar-06 12:55 
AnswerRe: how can i get the ip addres of host on windows application Pin
Steve Pullan12-Mar-06 13:21
Steve Pullan12-Mar-06 13:21 
GeneralRe: how can i get the ip addres of host on windows application Pin
sa_keles12-Mar-06 13:36
sa_keles12-Mar-06 13:36 
AnswerRe: how can i get the ip addres of host on windows application Pin
mcljava12-Mar-06 14:17
mcljava12-Mar-06 14:17 
GeneralRe: how can i get the ip addres of host on windows application Pin
sa_keles12-Mar-06 15:30
sa_keles12-Mar-06 15:30 
AnswerRe: how can i get the ip addres of host on windows application Pin
jklucker12-Mar-06 15:28
jklucker12-Mar-06 15:28 
If you are referring to the local PC as host you could use WMI to retrieve the IP address.

<br />
using System.Management<br />
<br />
public ArrayList ActiveIP()<br />
		{<br />
			ObjectQuery oq = new ObjectQuery("Select * FROM Win32_NetworkAdapterConfiguration WHERE IPEnabled=true");<br />
			ManagementObjectSearcher mos = new ManagementObjectSearcher(oq);<br />
			ArrayList NA = new ArrayList();<br />
<br />
			foreach(ManagementObject moInfo in mos.Get())<br />
			{<br />
				string[] IP = (string[])moInfo["IPAddress"];<br />
				NA.Add(IP.GetValue(0).ToString());<br />
			}<br />
<br />
			return NA;<br />
		}<br />

This will return all the IP address the PC has.

Hope this helps!

I reject your reality and substitute my own!
- Adam Savage, Mythbuster
-George W Bush

life is like a roll of toilet paper. The closer it gets to the end, the faster it goes.

My definition of an expert in any field is a person who knows enough about what's really going on to be scared.
- PJ Plauger
GeneralRe: how can i get the ip addres of host on windows application Pin
sa_keles12-Mar-06 15:34
sa_keles12-Mar-06 15:34 
GeneralRe: how can i get the ip addres of host on windows application Pin
sa_keles13-Mar-06 13:03
sa_keles13-Mar-06 13:03 
Questioncannot load image from desktop Pin
deepak112-Mar-06 12:22
deepak112-Mar-06 12:22 
AnswerRe: cannot load image from desktop Pin
Guffa12-Mar-06 12:44
Guffa12-Mar-06 12:44 
GeneralRe: cannot load image from desktop Pin
deepak112-Mar-06 12:59
deepak112-Mar-06 12:59 
GeneralRe: cannot load image from desktop Pin
Steve Pullan12-Mar-06 13:25
Steve Pullan12-Mar-06 13:25 
AnswerRe: cannot load image from desktop Pin
Guffa12-Mar-06 18:39
Guffa12-Mar-06 18:39 
QuestionNew to Excel Programming in C# Pin
mcljava12-Mar-06 12:17
mcljava12-Mar-06 12:17 
AnswerRe: New to Excel Programming in C# Pin
jklucker12-Mar-06 15:47
jklucker12-Mar-06 15:47 
GeneralRe: New to Excel Programming in C# Pin
mcljava13-Mar-06 4:05
mcljava13-Mar-06 4:05 
GeneralRe: New to Excel Programming in C# Pin
jklucker13-Mar-06 5:31
jklucker13-Mar-06 5:31 
GeneralRe: New to Excel Programming in C# Pin
mcljava13-Mar-06 5:56
mcljava13-Mar-06 5:56 
GeneralRe: New to Excel Programming in C# Pin
jklucker13-Mar-06 6:04
jklucker13-Mar-06 6:04 
GeneralRe: New to Excel Programming in C# Pin
Drew McGhie13-Mar-06 11:46
Drew McGhie13-Mar-06 11:46 
QuestionHow to catch event right mouse button in Pocket PC Pin
pmasknguyen12-Mar-06 12:04
pmasknguyen12-Mar-06 12:04 
AnswerRe: How to catch event right mouse button in Pocket PC Pin
Colin Angus Mackay12-Mar-06 20:08
Colin Angus Mackay12-Mar-06 20:08 
QuestionBitmap Creation Pin
allenmpcx12-Mar-06 11:40
allenmpcx12-Mar-06 11:40 

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.