Drive Box
با این کد میتونید یه Drive Box به صورت Runtime ( در زمان اجرا ) داشته باشید.
کد PHP:
public void DriveBox_RunTime()
{
ComboBox Drive_Box = new ComboBox();
Drive_Box.Size = new Size(100, 0);
Drive_Box.DropDownStyle = ComboBoxStyle.DropDownList;
this.Controls.Add(Drive_Box);
//================================================== ====
foreach (DriveInfo DI in System.IO.DriveInfo.GetDrives())
{
Drive_Box.Items.Add(DI);
}
}
سی دی در CDRom وجود دارد ؟
کد PHP:
foreach (ManagementObject mo in searcher.Get())
{
// If both properties are null I suppose there's no CD
if ((mo["volumename"] != null) || (mo["volumeserialnumber"] != null))
{
MessageBox.Show("The CD Is On Drive");
MessageBox.Show( mo["volumename"].ToString());
break;
}
else
{
MessageBox.Show ("No CD in Unit");
break;
}
}
}
بدست آوردن ip هاست
کد PHP:
using System.Net;
کد PHP:
String strHostName = Dns.GetHostName();
IPHostEntry ipEntry = Dns.GetHostEntry(strHostName);
IPAddress[] addr = ipEntry.AddressList;
به دست آوردن نام درایو ها
کد PHP:
public void Get_Drives_name()
{
string[] drv = Environment.GetLogicalDrives();
string str = "";
foreach (string s in drv)
{
str += s + "\n";
}
MessageBox.Show(str);
}