Click here to Skip to main content
15,897,891 members
Home / Discussions / C#
   

C#

 
GeneralRe: Commenting for comment web page Pin
Jeff Varszegi28-Apr-04 12:30
professionalJeff Varszegi28-Apr-04 12:30 
QuestionHow detect listview's columns resize event? Pin
machocr27-Apr-04 10:52
machocr27-Apr-04 10:52 
AnswerRe: How detect listview's columns resize event? Pin
Heath Stewart27-Apr-04 12:25
protectorHeath Stewart27-Apr-04 12:25 
GeneralRe: How detect listview's columns resize event? Pin
machocr27-Apr-04 13:06
machocr27-Apr-04 13:06 
GeneralRe: How detect listview's columns resize event? Pin
Heath Stewart27-Apr-04 17:04
protectorHeath Stewart27-Apr-04 17:04 
QuestionHow take IP-address of workgroup or domain computers? Pin
FedorMatv27-Apr-04 10:42
FedorMatv27-Apr-04 10:42 
AnswerRe: How take IP-address of workgroup or domain computers? Pin
Stefan Troschuetz27-Apr-04 11:14
Stefan Troschuetz27-Apr-04 11:14 
GeneralRe: How take IP-address of workgroup or domain computers? Pin
RNEELY28-Apr-04 6:11
RNEELY28-Apr-04 6:11 
To show the IP Address(es) of the local computer add:
<br />
string hostName = SystemInformation.ComputerName;<br />
System.Net.IPHostEntry hostEntry = System.Net.Dns.GetHostByName(hostName);<br />
System.Net.IPAddress[] adresses = hostEntry.AddressList;<br />
foreach (System.Net.IPAddress curAdd in adresses)<br />
{<br />
    MessageBox.Show(curAdd.ToString());<br />
}<br />


Sincerely,
-Ron
GeneralRe: How take IP-address of workgroup or domain computers? Pin
FedorMatv28-Apr-04 10:35
FedorMatv28-Apr-04 10:35 
GeneralRe: How take IP-address of workgroup or domain computers? Pin
FedorMatv28-Apr-04 10:37
FedorMatv28-Apr-04 10:37 
GeneralRe: How take IP-address of workgroup or domain computers? Pin
Stefan Troschuetz28-Apr-04 20:42
Stefan Troschuetz28-Apr-04 20:42 
AnswerRe: How take IP-address of workgroup or domain computers? Pin
Tarakeshwar28-Apr-04 0:40
Tarakeshwar28-Apr-04 0:40 
GeneralRe: How take IP-address of workgroup or domain computers? Pin
FedorMatv28-Apr-04 10:43
FedorMatv28-Apr-04 10:43 
GeneralInteracting with Designer Pin
Jamie Nordmeyer27-Apr-04 9:13
Jamie Nordmeyer27-Apr-04 9:13 
GeneralRe: Interacting with Designer Pin
Syed Abdul Khader27-Apr-04 22:39
Syed Abdul Khader27-Apr-04 22:39 
GeneralRe: Interacting with Designer Pin
Jamie Nordmeyer28-Apr-04 11:27
Jamie Nordmeyer28-Apr-04 11:27 
GeneralRe: Interacting with Designer Pin
Syed Abdul Khader28-Apr-04 18:29
Syed Abdul Khader28-Apr-04 18:29 
GeneralC# derived classes listing Pin
Zhaan27-Apr-04 8:12
Zhaan27-Apr-04 8:12 
GeneralRe: C# derived classes listing Pin
Jeff Varszegi27-Apr-04 8:32
professionalJeff Varszegi27-Apr-04 8:32 
GeneralRe: C# derived classes listing Pin
Heath Stewart27-Apr-04 8:36
protectorHeath Stewart27-Apr-04 8:36 
GeneralRe: C# derived classes listing Pin
Jeff Varszegi27-Apr-04 8:35
professionalJeff Varszegi27-Apr-04 8:35 
GeneralRe: C# derived classes listing Pin
Heath Stewart27-Apr-04 8:37
protectorHeath Stewart27-Apr-04 8:37 
GeneralRe: C# derived classes listing Pin
Jeff Varszegi27-Apr-04 8:59
professionalJeff Varszegi27-Apr-04 8:59 
GeneralRe: C# derived classes listing Pin
Zhaan27-Apr-04 19:16
Zhaan27-Apr-04 19:16 
GeneralRe: C# derived classes listing Pin
murugan_gs27-Apr-04 21:24
murugan_gs27-Apr-04 21:24 

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.