일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 삼성소프트웨어멤버십
- Button
- dataframe
- pycharm
- synology
- Series
- pandas
- keras
- imread
- install
- Lotto
- Numpy
- SPL
- index
- SciPy
- LSTM
- javascript
- mean
- ipad
- Splunk
- mariadb
- DFS
- GitHub
- 알고리즘
- pip
- CNN
- Python
- GT-S80
- E-P1
- RNN
- Today
- Total
목록공부/C sharp (34)
잠토의 잠망경
Introduction This article is about a USB HID component which enables you to communicate with HID devices over USB. There is no default component available for USB at this moment, and this component should provide you with a good starting point when writing your own USB HID enabled applications. This article provides a sample application aswell as the component itself. 출처: http://www.codeproject...
Introduction This article describes my C# class called DriveDetector which will allow your program to receive a notification when a removable drive (such as a flash drive) is inserted or removed. It also supports notifications about pending removal of such a device and cancelling this removal. This is an updated version of the article first published in March 2007. The class is now easier to use..
DataGridView AutoScroll question Can someone please demonstrate how to use the .AutoScrollOffset method on of the DGV control? I would like to scroll the current row so that it is positioned about halfway in the visible portion of the control. Thanks... Re: DataGridView AutoScroll question The .AutoScrollOffset method has nothing to do with the Rows inside of the DataGridView. To accomplish what..
this.txtInformation.AppendText(System.Environment.NewLine); this.txtInformation.AppendText("---------------------------------------------"); this.txtInformation.AppendText(System.Environment.NewLine); this.txtInformation.AppendText("내용"); this.txtInformation.ScrollToCaret(); 참고 : Test 했을때, this.txtInformation.Text += "내용".... 이런식으로 += 을 사용했을 경우에는 스크롤이 되지 않고 AppendText 를 사용해야만 스크롤이 됨을 확인했다. 출처: h..
C#에서 C로 작성된 DLL을 사용하는 설명이 나옵니다.^^ http://www.codeproject.com/KB/cs/usecdlllibincs.aspx
아래 source는 오라클 사이트의 tutorial 을 보고 따라 해봤습니다. //http://www.oracle.com/technology/sample_code/tech/windows/odpnet/howto/connect/index.html using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Data.OracleClient; namespace Oracle04 { class MainApp { public static void Main() { OracleConnection con = new OracleConnection(); con.ConnectionString = "Data Sou..
gnome 개발자 site이다. http://www.gnome.org/ 현재 c#으로 synergy를 만들고 있는데 리눅스의 윈도우 환경을 연구해야하는데 참고하고 있는 site이다. 마우스 설정에 관한 라이브러리 http://library.gnome.org/users/gnome-access-guide/stable/dtconfig-2.html.en http://library.gnome.org/users/gnome-access-guide/stable/dtconfig-14.html.en http://library.gnome.org/devel/gdk/unstable/GdkDisplay.html
Charles Petzold의 내용을 실습했습니다. Date.cs ================================================================================== using System; class PropertyTest { static void Main() { Date dateMoonWalk = new Date(); try { dateMoonWalk.Year = 1969; dateMoonWalk.Month = 12; dateMoonWalk.Day = 20; Console.WriteLine("Moon walk: {0}, Day of Year: {1}", dateMoonWalk, dateMoonWalk.DayOfYear()); } catch (Except..