Click here to Skip to main content
15,905,785 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to fill combo & listbox in popup windows form. Pin
Christian Graus12-Feb-07 23:19
protectorChristian Graus12-Feb-07 23:19 
GeneralRe: How to fill combo & listbox in popup windows form. Pin
utksThedeveloper12-Feb-07 23:27
utksThedeveloper12-Feb-07 23:27 
GeneralRe: How to fill combo & listbox in popup windows form. Pin
KraGiE7913-Feb-07 1:27
KraGiE7913-Feb-07 1:27 
QuestionCapturing Text using Global mouse event Pin
CSharpBeginer12-Feb-07 22:57
CSharpBeginer12-Feb-07 22:57 
AnswerRe: Capturing Text using Global mouse event Pin
Christian Graus12-Feb-07 23:08
protectorChristian Graus12-Feb-07 23:08 
QuestionOverride background in TextBox? Pin
Gywox12-Feb-07 22:44
Gywox12-Feb-07 22:44 
AnswerRe: Override background in TextBox? Pin
Christian Graus12-Feb-07 23:11
protectorChristian Graus12-Feb-07 23:11 
Questionhow to list network computer name, Ip in C# Pin
Sanjib Raj12-Feb-07 22:41
Sanjib Raj12-Feb-07 22:41 
i want to list all Computer Name, and Ip Address for the Domin "WLINKTECH". i use the following code but get an error like this, so plz help me about the problem.

--------------------
using System;
using System.DirectoryServices;
namespace IPAddressof_RemoteComputer
{

public class Class1
{
public Class1()
{
//
// TODO: Add constructor logic here
//
}

public void getIpCName()
{
DirectoryEntry entry = new DirectoryEntry("LDAP://wlinktech");
DirectorySearcher mySearcher = new DirectorySearcher(entry);
mySearcher.Filter = ("(objectClass=computer)");
Console.WriteLine("Listing of computers in the Active Directory");
Console.WriteLine("============================================");
foreach(SearchResult resEnt in mySearcher.FindAll())
{
Console.WriteLine(resEnt.GetDirectoryEntry().Name.ToString()); }
Console.WriteLine("=========== End of Listing =============");
}
}
}

---------------
Error like this
------------------
An unhandled exception of type 'System.Runtime.InteropServices.COMException' occurred in system.directoryservices.dll

Additional information: The server is not operational



Sanjit.rajbanshi@wlinktech.com
AnswerRe: how to list network computer name, Ip in C# Pin
Michael Sync13-Feb-07 0:02
Michael Sync13-Feb-07 0:02 
QuestionHow to preserve Globally Connection Object? Pin
vaibhavnvag12-Feb-07 22:23
vaibhavnvag12-Feb-07 22:23 
AnswerRe: How to preserve Globally Connection Object? Pin
bertvan12-Feb-07 22:51
bertvan12-Feb-07 22:51 
AnswerRe: How to preserve Globally Connection Object? Pin
Niiiissssshhhhhuuuuu13-Feb-07 1:51
Niiiissssshhhhhuuuuu13-Feb-07 1:51 
AnswerRe: How to preserve Globally Connection Object? Pin
Pete O'Hanlon13-Feb-07 2:55
mvePete O'Hanlon13-Feb-07 2:55 
QuestionHow to create Report Using Dynamic SQL Pin
jaganil12-Feb-07 22:22
jaganil12-Feb-07 22:22 
AnswerRe: How to create Report Using Dynamic SQL Pin
Colin Angus Mackay12-Feb-07 22:43
Colin Angus Mackay12-Feb-07 22:43 
GeneralRe: How to create Report Using Dynamic SQL Pin
jaganil12-Feb-07 22:57
jaganil12-Feb-07 22:57 
GeneralRe: How to create Report Using Dynamic SQL Pin
Christian Graus12-Feb-07 23:14
protectorChristian Graus12-Feb-07 23:14 
QuestionHeight of Combobox Pin
joebaas12-Feb-07 22:19
joebaas12-Feb-07 22:19 
AnswerRe: Height of Combobox Pin
il_masacratore14-Feb-07 2:36
il_masacratore14-Feb-07 2:36 
GeneralRe: Height of Combobox Pin
joebaas14-Feb-07 20:47
joebaas14-Feb-07 20:47 
QuestionDistribute load to second app [modified] Pin
Matglas12-Feb-07 21:37
Matglas12-Feb-07 21:37 
AnswerRe: Distribute load to second app Pin
miestas12-Feb-07 22:01
miestas12-Feb-07 22:01 
GeneralRe: Distribute load to second app Pin
Matglas12-Feb-07 23:11
Matglas12-Feb-07 23:11 
GeneralRe: Distribute load to second app Pin
miestas13-Feb-07 6:26
miestas13-Feb-07 6:26 
GeneralRe: Distribute load to second app Pin
Matglas13-Feb-07 7:51
Matglas13-Feb-07 7:51 

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.