Click here to Skip to main content
16,005,080 members
Home / Discussions / C#
   

C#

 
QuestionSearching the properties in the Active Directory Pin
khuzwayom10-Jan-08 2:18
khuzwayom10-Jan-08 2:18 
GeneralRe: Searching the properties in the Active Directory Pin
Justin Perez10-Jan-08 3:37
Justin Perez10-Jan-08 3:37 
GeneralRe: Searching the properties in the Active Directory Pin
khuzwayom10-Jan-08 20:02
khuzwayom10-Jan-08 20:02 
Generalexcel file export Pin
Member 475670910-Jan-08 2:08
Member 475670910-Jan-08 2:08 
GeneralRe: excel file export Pin
Justin Perez10-Jan-08 3:39
Justin Perez10-Jan-08 3:39 
QuestionIP Address Problem Pin
dipak.dipak10-Jan-08 1:43
dipak.dipak10-Jan-08 1:43 
GeneralRe: IP Address Problem Pin
half-life10-Jan-08 2:33
half-life10-Jan-08 2:33 
QuestionRe: IP Address Problem Pin
dipak.dipak10-Jan-08 2:52
dipak.dipak10-Jan-08 2:52 
Thank you for Reply
Yes i am as a client of that LAN. And i want to get all the IP Addresses and Names of the computers connected with the same LAN.

I have tried this way for test:

using System.Net;


String strHostName = Dns.GetHostName();
MessageBox.Show(strHostName.ToString());
IPHostEntry ipEntry = Dns.GetHostByName(strHostName);
IPAddress[] addr = ipEntry.AddressList;

for (int i = 0; i < addr.Length; i++)
{
MessageBox.Show(addr[i].ToString());
}

But it gets only My Computer's IP Address and another one IP address. I think it is mac address. I have put that IP Address on Run "\\121.245.75.159" but i opens my ShareDocs.

Please help me. Blush | :O

Dipak

GeneralRe: IP Address Problem Pin
Skippums10-Jan-08 5:14
Skippums10-Jan-08 5:14 
GeneralRe: IP Address Problem Pin
Dave Kreskowiak10-Jan-08 5:17
mveDave Kreskowiak10-Jan-08 5:17 
Generalmshtml.ihtmlelemrnt eventhandling Pin
balakpn10-Jan-08 1:38
balakpn10-Jan-08 1:38 
GeneralRe: mshtml.ihtmlelemrnt eventhandling Pin
Judah Gabriel Himango10-Jan-08 5:17
sponsorJudah Gabriel Himango10-Jan-08 5:17 
GeneralRe: mshtml.ihtmlelemrnt eventhandling Pin
balakpn10-Jan-08 19:51
balakpn10-Jan-08 19:51 
General[Message Deleted] Pin
michael_jhons10-Jan-08 1:38
michael_jhons10-Jan-08 1:38 
GeneralRe: delete or insert using datagrid Pin
Manoj G10-Jan-08 4:43
Manoj G10-Jan-08 4:43 
GeneralRe: delete or insert using datagrid Pin
michael_jhons10-Jan-08 22:44
michael_jhons10-Jan-08 22:44 
GeneralConvert "Yes" To Boolean Pin
StyleGuide10-Jan-08 1:14
StyleGuide10-Jan-08 1:14 
GeneralRe: Convert "Yes" To Boolean Pin
J4amieC10-Jan-08 1:26
J4amieC10-Jan-08 1:26 
GeneralRe: Convert "Yes" To Boolean Pin
Thomas Stockwell10-Jan-08 1:27
professionalThomas Stockwell10-Jan-08 1:27 
GeneralRe: Convert "Yes" To Boolean Pin
StyleGuide10-Jan-08 1:29
StyleGuide10-Jan-08 1:29 
GeneralRe: Convert "Yes" To Boolean Pin
Pete O'Hanlon10-Jan-08 1:46
mvePete O'Hanlon10-Jan-08 1:46 
GeneralRe: Convert "Yes" To Boolean Pin
Luc Pattyn10-Jan-08 3:45
sitebuilderLuc Pattyn10-Jan-08 3:45 
GeneralRe: Convert "Yes" To Boolean Pin
Pete O'Hanlon10-Jan-08 1:31
mvePete O'Hanlon10-Jan-08 1:31 
GeneralRe: Convert "Yes" To Boolean Pin
StyleGuide10-Jan-08 1:46
StyleGuide10-Jan-08 1:46 
GeneralRe: Convert "Yes" To Boolean Pin
StyleGuide10-Jan-08 1:56
StyleGuide10-Jan-08 1:56 

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.