일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 장고
- matplot
- c#
- tensorflow
- 오라클
- vscode
- oracle
- Python
- MSSQL
- windows10
- PYTHON MSSQL
- django
- 크롤링
- 윈도우10
- sql developer
- rs422
- pymssql
- Visual Studio Code
- scrapy
- 자본주의
- MEAN Stack
- MX Component
- 파이썬
- 텐서플로우
- MSSQL PYTHON
- M2M
- 딥러닝
- 티스토리 초대장
- rs485
- Serial
- Today
- Total
목록Language (212)
안까먹을라고 쓰는 블로그
http://www.codehosting.net/blog/BlogEngine/post/Simple-C-Web-Server.aspx http://www.codeproject.com/Articles/137979/Simple-HTTP-Server-in-C
123objCOM = Activator.CreateInstance(Type.GetTypeFromProgID("iuOleSvr.iuInterFuncOleSvr"));object obj = objCOM.GetTagVal(txtReadTagName.Text.Trim());if (obj != null) txtReadVal.Text = obj.ToString();Colored by Color Scriptercs
디버깅 모드 (컴파일시 들어가는 디버깅에 필요한 자질구리한 정보를 뺀 알짜 프로그램만 쏙 뽑아냄) - 실행파일에 디버깅 정보를 삽입하여 언제든지 디버깅을 할 수 있도록 하며 Debug서브 폴더에 실행파일을 만들어줍니다. - 디버깅정보가 들어가 있기때문에 실행파일 상태를 확인할 수 있습니다. - 디버그에 필요한 정보들을 실행시 계속 체크함으로써 속도가 느립니다. - 디버그 빌드와 릴리즈 빌드에서 서로 실행 결과가 다른 경우? 특히 디버그 빌드에서는 괜찮은데 릴리즈 빌드에서만 오류가 발생하여 프로그램이 죽는 경우가 있는데 이런 경우는 대부분 메모리가 깨진 경우에 발생합니다. 두 모드에서 동적으로 메모리를 할당하면 힙 영역에 요청한 크기만큼 메모리를 할당 받게 되는데 그 초기값이 다릅니다. - 릴리즈 모드와 ..
■ .NET FrameWork DownLoadhttp://hosts.tistory.com/37http://blog.naver.com/crossbow71?Redirect=Log&logNo=60184224619
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