일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 텐서플로우
- Python
- scrapy
- M2M
- 크롤링
- 딥러닝
- MSSQL
- PYTHON MSSQL
- 티스토리 초대장
- MSSQL PYTHON
- MX Component
- django
- 자본주의
- pymssql
- 장고
- 오라클
- rs485
- Visual Studio Code
- windows10
- 파이썬
- MEAN Stack
- tensorflow
- rs422
- Serial
- 윈도우10
- c#
- matplot
- oracle
- sql developer
- vscode
- Today
- Total
목록Language/C# (95)
안까먹을라고 쓰는 블로그
- 일반 : 기본 사용 MessageBox.Show("저장실패 - Ex : " + Ex.TostringToString()) - 경고 : 경고이미지 및 상단제목.... MessageBox.Show("설정값은 숫자만 입력할 수 있습니다!", "오류", MessageBoxButtons.OK, MessageBoxIcon.Warning); - 확인기능 if (MessageBox.Show("데이터를 삭제하시겠습니까??", "기준정보삭제", MessageBoxButtons.YesNo, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button1) == DialogResult.Yes) { // Yes - 처리할 내용 } else { // No - 처리할 내용 }
https://vmpo.tistory.com/55?category=731824 [ironpython] C#에서 python 코드 실행하기 사전준비 : python이 설치되어 있어야 합니다. https://vmpo.tistory.com/entry/python-%EC%95%84%EB%82%98%EC%BD%98%EB%8B%A4anaconda-%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B0-%EC%9C%88%EB%8F%84%EC%9A%B0-10?cat.. vmpo.tistory.com
https://docs.microsoft.com/ko-kr/dotnet/welcome .NET 시작 .NET 기술 제품군을 시작합니다. docs.microsoft.com
■ CellMerge 이벤트 선언 gridView1.CellMerge += GridView1_CellMerge; ■ 이벤트 구현 Line이 다른데, Grade가 동일하면 병합되는 문제관련 처리 private void GridView1_CellMerge(object sender, DevExpress.XtraGrid.Views.Grid.CellMergeEventArgs e) { DevExpress.XtraGrid.Views.Grid.GridView view = sender as DevExpress.XtraGrid.Views.Grid.GridView; if (view == null) return; { if (e.Column.FieldName == "Grade") { string text1 = view.GetR..
비 효율 적 (전체 Row검색하여 처리하는 방법 - 데이터 많으면,, 성능문제 발생.) for (int i = 0; i < bandedGridView1.RowCount; i++) { if (bandedGridView1.GetRowCellValue(i, bandedGridView1.Columns["일자"].ToString().Trim()) == "소 계") { bandedGridView1.SelectRow(i); bandedGridView1.Appearance.SelectedRow.BackColor = Color.LightSkyBlue; } } 효율 적 (RowStyle 이벤트를 사용하는 방법) private void BandedGridView1_RowStyle(object sender, DevExpres..
https://aircook.tistory.com/entry/AES-SHA-%EC%95%94%ED%98%B8%ED%99%94-3-C AES, SHA 암호화 3, C# 닷넷.. C#을 통해 AES, SHA 암호화를 진행하겠습니다. 음.. visual studio 정품이 없어 고민하다가 검색해보니.. 언제부터 나왔는지 모르겠는데 https://www.visualstudio.com/ko-kr/visual-studio-homepage-vs.as.. aircook.tistory.com
폴더를 옮기거나, 다른 PC에서 작업을 하는 등의 경우 빌드 시에 "lc.exe"이(가) 종료되었습니다. 오류가 뜨는 경우가 있다. 이 경우에는 솔루션 탐색기의 Properties ㄴ licenses.lics - 파일 삭제 후, 재 빌드하면 해결된다.
KakaoDeveloper 개발가이드 https://developers.kakao.com/docs/restapi/getting-started
https://blog.naver.com/gmkjh74/220782675038 GV.sQuery = "EXEC[dbo].[spkind_sooyulGraphy] 2, '" + cmbLine.Text + "', '" + DT2.Rows[0]["kind_code"].ToString() + "', '" + dateFrom.Text.Replace("-", "") + "', '" + dateTo.Text.Replace("-", "") + "'"; DT3 = GV.DB.GetDataTableSelectQuery(GV.sQuery); if (DT3 != null && DT3.Rows.Count > 0) { DataTable DT_FS = new DataTable(); DataTable DT_F1 = new DataTa..
using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; using Default; using GV = Default.clsGlobalVal; using System.Diagnostics; // 프로세스 사용 using System.Runtime.InteropServices; // DLL Import 사용 using System.Threading; namespace DataSave_HopperScale { static class Program { // 이미 실행중이면, 포커스 [DllImport("user32")] private static extern bool SetForegroundWind..