public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void timer1_Tick(object sender, EventArgs e)
{
bool bFind = false;
// USB 상태 체크
DriveInfo [] diArray = DriveInfo.GetDrives();
foreach (DriveInfo di in diArray)
{
if (di.IsReady == true && di.DriveType == DriveType.Removable)
{
bFind = true;
break;
}
}
label1.Text = (bFind == true) ? "존재합니다." : "없습니다.";
}
private void button1_Click(object sender, EventArgs e)
{
timer1.Start();
}
}
DB에 Image 데이터를 바이너리로 저장 및 로드하기 (0) | 2013.05.25 |
---|---|
C# Thread, delegate, Invoke 사용예 (0) | 2013.05.25 |
MD5 샘플 코드 (0) | 2013.05.25 |
C#을 이용한 LPT1 포트 제어 자료 - 시작시점... (0) | 2013.05.25 |
C# 에서 Crystal Report 사용하기 (0) | 2013.05.20 |