当前位置: 编程技术>.net/c#/asp.net
c# 获得局域网主机列表实例
来源: 互联网 发布时间:2014-10-13
本文导语: using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; using System.Net; using System.Threading; namespace WindowLanSearch { /// /// Form1 的摘要说明。 /// public class Form1 : System.Windo...
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Net;
using System.Threading;
namespace WindowLanSearch
{
///
/// Form1 的摘要说明。
///
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Button button1;
private string[,] LanHost;
private System.Windows.Forms.ProgressBar progressBarSearch;
private Thread[] thread;
private System.Windows.Forms.ListView listView1;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
private string str;
///
/// 必需的设计器变量。
///
private System.ComponentModel.Container components = null;
public Form1()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
InitLanHost();
progressBarSearch.Maximum = 255;
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
///
/// 数组初始化
///
private void InitLanHost()
{
LanHost = new string[255,2];
for (int i=0;i
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Net;
using System.Threading;
namespace WindowLanSearch
{
///
/// Form1 的摘要说明。
///
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Button button1;
private string[,] LanHost;
private System.Windows.Forms.ProgressBar progressBarSearch;
private Thread[] thread;
private System.Windows.Forms.ListView listView1;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
private string str;
///
/// 必需的设计器变量。
///
private System.ComponentModel.Container components = null;
public Form1()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
InitLanHost();
progressBarSearch.Maximum = 255;
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
///
/// 数组初始化
///
private void InitLanHost()
{
LanHost = new string[255,2];
for (int i=0;i