일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MSSQL
- windows10
- pymssql
- 텐서플로우
- M2M
- MEAN Stack
- django
- 크롤링
- PYTHON MSSQL
- 파이썬
- sql developer
- rs485
- oracle
- matplot
- tensorflow
- 윈도우10
- Visual Studio Code
- Serial
- rs422
- 자본주의
- vscode
- 오라클
- MSSQL PYTHON
- c#
- scrapy
- MX Component
- Python
- 장고
- 티스토리 초대장
- 딥러닝
- Today
- Total
목록Language/C# (95)
안까먹을라고 쓰는 블로그
1234567891011121314151617private void frmMDI_Load(object sender, EventArgs e){ // Ese Key를 눌렀을때 btnEnter_Click 이벤트가 발생되도록 설정 this.AcceptButton = btnEnter; // Enter Key를 눌렀을때 btnCancle_Click 이벤트가 발생되도록 설정 this.CancelButton = btnCancle; } private void btnCancle_Click(object sender, EventArgs e){ MessageBox.Show("btnCancle_Click");} private void btnEnter_Click(object sender, EventArgs e){ MessageBo..
■ 구현부분1234567891011121314151617181920212223242526272829303132333435public DialogResult InputBox(string title, string promptText, ref string value){ Form form = new Form(); Label label = new Label(); TextBox textBox = new TextBox(); Button buttonOk = new Button(); Button buttonCancel = new Button(); form.Text = title; label.Text = promptText; textBox.Text = value; buttonOk.Text = "OK"; buttonCanc..
1234567891011121314151617181920212223242526272829private Form[] fTemp; private void frmMdi_Load(object sender, EventArgs e){ try { ChildForm_DisplayCount(); } catch (Exception ex) { MessageBox.Show(ex.Message); }} private void ChildForm_DisplayCount(){ this.MdiChildActivate += new EventHandler(frmMDI_MdiChildActivate);} void frmMDI_MdiChildActivate(object sender, EventArgs e){ fTemp = this.MdiCh..
Mcrosoft.CSharp : C#을 사용한 컴파일과 코드 생성 제공 ■ C# 네임 스페이스 정리 - Mcrosoft.JSharp : JSharp.NET 을 사용한 컴파일과 코드 생성 제공 - Mcrosoft.VisualBasic : VisualBasic.NET 을 사용한 컴파일과 코드 생성 제공 - Mcrosoft.Win32 : 윈도우 레지스트리 참조와 윈도우 시스템 이벤트 제공 - System : 일반적으로 사용되는 값 타입과 레퍼런스 데이타 타입, 이벤트와 이벤트 핸들러, 인터페이스 , 속성, 예외 등을 포함하며, 가장 중요한 네임스페이스이다. - System.Collections : 리스트와 큐 배열, 해쉬 테이블, 사전 등과 같은 컬렉션 타입 제공 - System.ComponentModel :..
[Service 프로젝트 만들기] [Service 프로젝트 생성 항목] ■ Service1.cs12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Diagnostics;using System.Linq;using System.ServiceProcess;using System.Text; using System.Threading; namespace WindowsService1{..
BackgroundWorkerDispatcher 멀티스레드스레드 동기화 ThreadPool
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading; namespace Event_Test{ // 일종의 CallBack함수의 함수포인터로 이벤트 발생시 호출 할 Method의 타입에 맞추어 선언 delegate void EventDelegate(); // Delegate 선언 class clsEvent { public event EventDelegate _EventDelegate;..
1234567891011121314151617181920212223242526272829303132333435using System.Threading; /// /// 프로그램 중복실행 체크/// /// 중복실행 체크할 프로그램이름/// true - 실행안됨 / false - 실행중public bool IsProgramExcute(string ProgName){ bool IsExcute; Mutex mutext = new Mutex(true, ProgName, out IsExcute); if (IsExcute) return true; // 실행안됨 else return false; // 실행중} /// /// Form Load Function/// /// /// private void frmDolphine..
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091public class clsINI{ public string Path = @"c:\\test.ini"; public clsINI(String sPath) { Path = sPath; } // INI파일읽기함수(섹션설정) public string[] GetIniValue1(string Section) { byte[] ba = new byte[255]; uint Flag = GetPrivateProfi..