일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 서버동기화
- setInterval 중지
- pm2 확인
- invalid data
- 공인IP
- pm2
- setInterval clear
- listener 1883
- map이 undefined가 뜰 때
- setInterval 외부 정지
- DataGridView 직접 입력
- mySQL_Replication
- c# datagridview 데이터 넣기
- 맥 어드레스
- setInterval 정지
- mosquitto.conf
- datagridview 직접입력
- AntDesign
- pm2 시작
- pm2 설치
- transfer
- 1883
- allow_anonymouse
- timepicker
- mosquitto
- 데이터테이블 데이터 넣기
- html #select #option #multiple
- Replication
- pm2 상태 확인
- DatePicker
- Today
- Total
목록프로그래밍/C# (105)
개발 노트
Mosquitto 원격접속 허용하기 Mosquitto 는 초기설정으로는 동일 기기 내에서만 접속이 됩니다. 윈도우즈는 Mosquitto를 설치하면 기본적으로 동일 기기(로컬 머신)에서만 접속이 허용됩니다. 외부기기에서 원격 접속이 가능하도록 하기 위해서는 Mosquitto 설치 디렉토리에 있는 mosquitto.conf 파일의내용을 다음과 같이 수정하여야 합니다. mosquitto.conf 파일은 디렉토리 c:/Program Files\Mosquitto 또는 c:\Program Files (x86)\Mosquitto안에 있습니다.다만 이 파일은 일반 사용자 자격으로는 수정이 되지 않으므로 이 글 뒷부분의 mosquitto.conf파일 수정하는 방법을확인하시기 바랍니다. 해당 파일의 내용이 많으므로 두 ..
폼닫기 이벤트 지정 /// /// 폼 닫기 이벤트 핸들러 선언 /// /// /// public void Form_Closing(object sender, FormClosedEventArgs e) { propertyCloseMethod(); } 닫기이벤트지정 private void propertyCloseMethod() { Properties.Settings.Default.host = textBoxHost.Text; Properties.Settings.Default.port = textBoxPort.Text; Properties.Settings.Default.qos = comboBoxQos.Text; Properties.Settings.Default.topicSub = textBoxSubTopic.Tex..
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FolderOpen { class Program { static void Main(string[] args) { //사용자가 열고자 하는 폴더 경로 지정 string localFolderPath = @"D:\"; //D드라이브 폴더 실행 System.Diagnostics.Process.Start(localFolderPath); } } } //내 폴더 위치 불러오기 System.Environment.GetFolderPath(Environment.SpecialFolder.MyDocume..
private void dbView_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e) { { //특정값을 가진 열을 좀 다르게 보여주고 싶을 때 if (e.ColumnIndex == 1) { if (e.Value != null) { string text = e.Value.ToString(); if (text.Contains("텍스트")) { e.CellStyle.ForeColor = Color.Red; e.CellStyle.SelectionForeColor = Color.Red; } } } } 참고링크 https://blueasa.tistory.com/332
데이터그리드뷰 뿌려준후에 맨처음 위치로 가기위해서 focus 맞추기 dataGridViewMessage.CurrentCell = dataGridViewMessage.Rows[0].Cells[0]; 참고링크 https://aromacrony.tistory.com/157
C# delegate의 개념 C# delegate는 C/C++의 함수 포인터와 비슷한 개념으로 메서드 파라미터와 리턴 타입에 대한 정의를 한 후 동일한 파라미터와 리턴 타입을 가진 메서드를 서로 호환해서 불러쓸수 있는 기능이다. 델리게이트는 한마디로 말해서 대리자라고 말한다 즉, 대신 일을 해주는 녀석이다 다른 말로 해서는 메소드 참조를 포함하고 있는 영역이라고 말할 수 있다 아래는 델리게이트의 선언 형식 delegate 반환형 델리게이트명(매개변수..); using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplica..