일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- datagridview 직접입력
- setInterval 중지
- mosquitto
- setInterval clear
- transfer
- listener 1883
- pm2 설치
- 1883
- setInterval 정지
- AntDesign
- pm2 확인
- 서버동기화
- c# datagridview 데이터 넣기
- allow_anonymouse
- 맥 어드레스
- pm2
- mySQL_Replication
- html #select #option #multiple
- pm2 상태 확인
- Replication
- DatePicker
- mosquitto.conf
- DataGridView 직접 입력
- timepicker
- pm2 시작
- 공인IP
- setInterval 외부 정지
- 데이터테이블 데이터 넣기
- invalid data
- map이 undefined가 뜰 때
- Today
- Total
목록전체 글 (711)
개발 노트
C# sql 다른테이블 각각 join시킬때 서로다른 고유번호를 조건으로 걸면 다른 칼럼에 있는 값들을 조절할수 있음
먼저 파일저장 버튼을 만든다 ExportToCSV()라는 메소드를 만든다 private void ExportToCSV() { SaveFileDialog saveFileDialog = GetCsvSave(); if (saveFileDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK) { Save_Csv(saveFileDialog.FileName, dataGridView1, true); // dataGridView에 데이터를 세팅하는 메서드를 호출 } Save_CSV 라는 함수를 만든다. bool headerText = true; private void Save_Csv(string fileName, DataGridView dataGridView1, bo..
수정쿼리 string QueryUpdate = "update dc_caredocument " + "SET careSeq='" + seqstr + "',careStart='" + datetimepickeStart.Text + "',careFinish='" + dateTimePickerEnd.Text + "',time='" + textBoxTime.Text + "',sympton='" + textBoxSympton.Text + "',count='" + textBoxCount.Text + "',injection='" + textBoxInjection.Text + "',oral='" + textBoxOral.Text + "',age='" + remain + "',memo='" + textBoxMemo.Text ..
joinQuery = "SELECT 등록.number, 등록.birth, 문서.careStart FROM dc_caredocument 문서 RIGHT JOIN dc_careenroll 등록 ON (등록.number = 문서.number) WHERE 등록.number = '" + comboBoxNumber.Text + "';";
using System; using System.Data; using System.Drawing; using System.Windows.Forms; namespace WindowsFormsApp3 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { DataTable dt = GetData(); this.dataGridView1.DataSource = dt; //머리글 셀을 포함하여 열에 있는 모든 셀의 내용에 맞도록 열 너비가 조정됩니다. this.dataGridView1.AutoSizeColumnsMode = Data..
https://www.iconfinder.com//