일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- scrapy
- 자본주의
- PYTHON MSSQL
- Serial
- 딥러닝
- rs485
- 크롤링
- MSSQL PYTHON
- Visual Studio Code
- windows10
- 티스토리 초대장
- pymssql
- 장고
- oracle
- django
- MSSQL
- matplot
- tensorflow
- 윈도우10
- rs422
- vscode
- 오라클
- sql developer
- Python
- M2M
- MX Component
- c#
- 파이썬
- 텐서플로우
- MEAN Stack
- Today
- Total
목록Language/C# (91)
안까먹을라고 쓰는 블로그
★ 문제사항 위 오류는 "OpenCvSharpExtern.dll" 관련 오류이다. 참조 경로에 "OpenCvSharpExtern.dll"가 있어야 하는데, 추가를 해도 오류가 발생 함. ★ 조치사항 아래의 최신 버전의 "OpenCvSharpExtern.dll" 을 적용 시 오류 https://github.com/shimat/opencvsharp/releases/tag/4.7.0.20230114 아래의 "OpenCvSharp-4.1.1-x86-20191023.zip" 버전의 "OpenCvSharpExtern.dll" 적용 시 정상 실행 됨. https://github.com/shimat/opencvsharp/releases?page=3 끝~
https://mingtrace.tistory.com/440 https://rudalskim.tistory.com/254 C# - OpenCV를 이용한 IP Camera View 프로그래밍 C#을 이용해서 IP Camera View 제작 환경 회사 업무 관련하여서 C#을 이용하여 IP Camera를 보는 프로그램을 작성하게 되었어요. IP Camera의 RSTP Address를 사용하여 View 기능을 구현했어요. 사용 환경 1. IDE : mingtrace.tistory.com - OpenCvSharp (https://github.com/shimat/opencvsharp) . C#에서 OpenCvSharp을 사용할 수 있도록 해주는 OpenSource 입니다. OpenCV (Open source Com..
dt테이블에서, "Col1", "Col2", "Col3"만 추출하여, dt2를 만드는 방법은 아래와 같습니다. DataTable dt2 = dt.DefaultView.ToTable(false, new string[] {"Col1", "Col2", "Col3"}); 끝~
https://www.wake-up-neo.com/ko/c%23/c-%EC%97%90%EC%84%9C-json%EC%9C%BC%EB%A1%9C-datatable-%EB%B3%80%ED%99%98/1073097003/ c# — C #에서 JSON으로 datatable 변환 당신은 Alireza Maddah에 의해 지정된 것과 동일한 방법을 사용할 수 있으며, 다음과 같이 하나의 json 배열에 두 개의 데이터 테이블을 사용하려는 경우 방법이 있습니다. public string ConvertDataTabletoStri www.wake-up-neo.com .Net 4.0에서 JavaScriptSerializer를 찾을 수 없음 https://stackoverflow.com/questions/7000811/ca..
Window VISTA 부터 Windows Service 프로그램은 일반 콘솔이나 UI 프로그램과 달리, Session 0이라고 불리는 백그라운드에서 실행되어 사용자가 UI출력을 볼수 없다. 이유는 Session 0은 윈도우 핸들이 생기지 않기 때문에 UI가 없어서 이다. 0번이 아닌 다른 Session ID로 실행시켜야 한다. 원리는 아래와 같다. 1. Window API 를 써서 CONSOLE SESSION을 얻어옴. (대개 1임) 2. 윈도루 로그인 된 상태인지 확인한다. (Winlogon.exe 가 콘솔 Session ID로 실행 중인지 윈도우 API로 확인) 3. winlogon.exe의 PID를 가져옴, 위 그림에서는 1052 임 4. OpenProcess 윈도우 API를 이용하여, winlo..
https://imcyber.tistory.com/264 [C#] 외부 프로그램 실행시키고,종료이벤트 처리 C#으로 응용프로그램 프로세스를 실행시키고, 에러가 발생했을 때 강제 종료 시키고 다시 응용프로그램을 실행시키도록 Launcher 프로그램을 만들었다. 그런데 Tray Icon으로 숨겨지는 프로그램, Dial imcyber.tistory.com
// DataRow Copy DataRow drH, sourceRow; drH = _header.CurrentRow.Table.NewRow(); sourceRow = _header.CurrentRow.Table.Rows[0]; drH.ItemArray = sourceRow.ItemArray.Clone() as object[]; _header.ClearAndNewRow(); DataRow dr = _header.CurrentRow; foreach (DataColumn dc in _header.CurrentRow.Table.Columns) { // 주문번호, 주문일자, 담당자, 주문구분, 매출구분, 배송구분, 영업그룹, TP_ORD 가 아니면 초기화 if (Array.IndexOf(new string[] {..
https://docs.microsoft.com/ko-kr/dotnet/csharp/misc/cs0683
https://docs.devexpress.com/WindowsForms/1686/controls-and-libraries/pivot-grid/ui-elements/column-header-area Column Header Area | WinForms Controls | DevExpress Documentation The Column Header Area displays the headers of visible column fields. The table below lists the main properties which affect the column header area’s appearance: See Also docs.devexpress.com
https://www.grapecity.com/componentone/docs/win/online-flexgrid/edit-mode.html Edit Mode | FlexGrid for WinForms | ComponentOne FlexGrid for WinForms provides several events and methods related to editing to give you complete control on grid editing. Learn more about edit mode here. www.grapecity.com FlexGrid 에서 편집 모드는 마우스 클릭이나 키보드를 사용하여 런타임에 호출할 수 있습니다. 그리드가 편집 모드인지 여부를 프로그래밍 방식으로 확인하려면 Editor ..