C#/WinForm(35)
-
[WinForm] 맨마지막 라인으로 이동하기
맨 마지막 라인으로 이동하기 ListBox listBox1.SelectedIndex=listBox1.Items.Count-1; ListView listView1.Items[listview1.Items.Count-1].EnsureVisible(); TextBox textbox1.SelectionStart=textbox1.Text.Length; textBox.ScrollToCreate();
2011.10.21 -
[WinForm] 엑셀 지우기 현재 창만
public void searchExcel() { Process[] AllProcesses = Process.GetProcessesByName("EXCEL"); myHashtable = new Hashtable(); int iCount = 0; foreach (Process ExcelProcess in AllProcesses) { myHashtable.Add(ExcelProcess.Id, iCount); iCount = iCount + 1; } } Hashtable myHashtable; private void KillExcel() { Process[] AllProcesses = Process.GetProcessesByName("EXCEL"); // check to kill the right proces..
2011.10.13 -
[WinForm] 엑셀관련
http://blog.daum.net/gksdy2000/8006560
2011.09.30 -
[Winform] C# excel 연동 예제
http://kr.blog.yahoo.com/season4d/94
2011.09.29 -
[WinForm] MSChart
http://preludeb.egloos.com/4162141
2011.08.29 -
[WinForm 08.20] 마지막 부분 선택하여 데이터 수신하기
int a = comPort.ReadByte(); real += ((char)a).ToString(); if (a == 0x02) { real += comPort.ReadTo(((char)0x03).ToString()); } s_state = 1;
2011.08.21