Category
-
[C#] SubItem이 수정가능한 ListViewProgramming/C# 2010. 1. 31. 14:17
ListView에 대한 내용을 찾다가.. ListView 자체에서 수정가능한 컨트롤을 찾았다. ListView에서 수정할 수 있는 컨트롤 textBox와 ComboBox를 추가하였다. private Control[] Editors; public void Form_Load(object sender, Eventargs e) { Editors = new Control[] { null, textBox2, textBox2, comboBox4, comboBox4, comboBox4, comboBox4, comboBox4, comboBox4, comboBox4, comboBox4}; } 컨틀롤 변수를 선언하여.. 리스트뷰의 컬럼헤더를 어떤한 컨트롤로 변경할 건지에 대해서 지정해주며, ListViewEx의 이벤트 중에..
-
[C#] Serial CommunicationProgramming/C# 2010. 1. 25. 16:49
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace SerialPortTEST { public partial class Form1 : Form { public System.IO.Ports.SerialPort serialPort; public Form1() { InitializeComponent(); OnSerialPort(); CheckForIllegalCrossThreadCalls = false; } //Comb..
-
[C#] dateTimePicker Control 사용하기.Programming/C# 2010. 1. 20. 22:46
dateTimePicker Control이란? 간단하게 이야기하면 C#에서 사용하는 달력 컨트롤이다. 여러가지 달력 컨트롤 중에 하나인 dateTimePicker Control에 대해서 알아보자. dateTimePicker 에 대한 속성은 http://msdn.microsoft.com/ko-kr/library/system.windows.forms.datetimepicker(VS.80).aspx 위의 링크를 참고,, 출력되는 형식을 변경.. dateTimePicker.Value.ToString("yyyyMMdd"); 할 수 있다.
-
[Silverlight] asp.net 프로젝트를 진행하다가..Programming/C# 2009. 12. 8. 09:38
Asp.net 프로젝트를 진행하다가... Chart Control이 필요하여 silverlight를 건드리게 되었다... 오픈 소스: http://www.visifire.com/ 오픈 소스로 제공하는 visifire를 이용하여 그래프를 건드리게 되었는데.. 위의 홈페이지에서 zip 파일을 다운로드 하게 되면 Dll을 제공한다. 위와 같은 차트 컨트롤을 제공한다. 사진출처 : http://www.visifire.com/silverlight_2d_column_charts_gallery.php
-
[ 리눅스 명령어 ] umask, link, symlink 실습관련 예제..Operation System/Linux ( CentOS ) 2009. 11. 2. 14:28
umask, link, symlink 실습관련 예제.. #include #include #include #include #include int main() { char *originalname = "test.txt"; char *hardfilename = "test.txt.hard"; char *softfilename = "test.txt.soft"; int filedes, retval; mode_t oldmask; char buffer[1024]; int nread; struct stat finfo; oldmask = umask(0377); filedes = open(originalname, O_CREAT, 0755); close(filedes); if(retval = access(originalnam..
-