일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- invalid data
- setInterval clear
- AntDesign
- pm2 설치
- listener 1883
- pm2
- 서버동기화
- setInterval 중지
- 맥 어드레스
- setInterval 외부 정지
- datagridview 직접입력
- mySQL_Replication
- pm2 확인
- mosquitto.conf
- mosquitto
- html #select #option #multiple
- setInterval 정지
- DataGridView 직접 입력
- Replication
- allow_anonymouse
- 공인IP
- timepicker
- pm2 상태 확인
- pm2 시작
- 데이터테이블 데이터 넣기
- map이 undefined가 뜰 때
- DatePicker
- c# datagridview 데이터 넣기
- 1883
- transfer
- Today
- Total
목록프로그래밍 (150)
개발 노트
리스트 저장버튼 만든후 함수생성 private void buttonTopicSave_Click(object sender, EventArgs e) { StreamWriter sw; sw = new StreamWriter("Sub.txt"); int nCount = listBoxSub.Items.Count; for (int i = 0; i < nCount; i++) { listBoxSub.Items[i] += "\r\n"; sw.Write(listBoxSub.Items[i]); } sw.Close(); } 생성된 패스값 불러와서 리스트박스로 가져오기 private void buttonTopicOpen_Click(object sender, EventArgs e) { string currentPath = Sys..
//지정한 경로 문자열에서 디렉터리 정보를 반환 //반환된 경로에는 경로의 마지막에 있는 ‘\’가 포함되지 않는다. var directoryName = Path.GetDirectoryName(path); //지정한 경로 문자열에서 파일 이름과 확장자를 반환 var fileName = Path.GetFileName(path); //지정한 경로 문자열의 확장자를 반환 //반환된 경로의 확장자에는 점(.)이 포함된다 var extension = Path.GetExtension(path); //지정한 경로 문자열에서 파일 이름을 확장자 없이 반환 var filenameWithoutExtension = Path.GetFileNameWithoutExtension(path); //지정한 경로에서 루트 디렉터리 정보(..
ini 저장함수 private void initCloseMethod() { // ini파일에 등록 // WritePrivateProfileString("카테고리", "Key값", "Value", "저장할 경로"); WritePrivateProfileString("MqttClient", "LastHostName", textBoxHost.Text, Application.StartupPath + @"\MqttClient.ini"); WritePrivateProfileString("MqttClient", "LastSubTopic", textBoxSubTopic.Text, Application.StartupPath + @"\MqttClient.ini"); WritePrivateProfileString("MqttC..
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..