일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- rs485
- sql developer
- MSSQL
- MX Component
- django
- tensorflow
- oracle
- matplot
- c#
- PYTHON MSSQL
- Serial
- MSSQL PYTHON
- windows10
- 자본주의
- 텐서플로우
- 파이썬
- 오라클
- MEAN Stack
- vscode
- pymssql
- 장고
- 티스토리 초대장
- rs422
- 윈도우10
- 딥러닝
- Python
- M2M
- Visual Studio Code
- 크롤링
- scrapy
- Today
- Total
목록Language/C# (91)
안까먹을라고 쓰는 블로그
[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..
■ 자식폼 생성시 부모폼을 매개변수로 넘겨주는 방식 ▶ ParentForm12// 자식폼 생성 및 인스턴스 초기화ChildForm ChForm = new ChildForm(this);cs ▶ ChildForm123456// 자식폼 생성자public ChildForm(ParentForm pf){ InitializeComponent(); PaForm = pf;}cs
네임스페이스 : System.Runtime.Remoting.Channels.Ipc System.Runtime.Remoting.Channels.Http어셈블리 : System.Runtime.Remoting(System.Runtime.Remoting.dll) 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102using System.Runtime.Remoting.Channels.Ipc; // IPCusing S..
■ 프로젝트 네임 - IPC Client : IPC_Client - IPC Server : IPC_Server - IPC Object : IPC_RemoteObject ■ IPC_Server 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms; using Sys..
123456789101112131415161718192021222324252627// Timer 배열선언public Timer[] Tmr; // Timer배열 초기화public void Timer_Initial(){ // Timer 배열 10개 for (int i = 0; i
123456789101112131415161718192021222324252627282930313233343536373839404142// Ping Test ValuesPing pingSender = new Ping();PingOptions options = new PingOptions();PingReply reply;string data = "";string address = "192.168.0.59";byte[] buffer;int timeout = 500;int RetryCnt = 1;string Flag; /// Ping Test Function/// /// Ping Test Flag (true/false)public Boolean Ping(){ try { Flag = ""; options.Don..