일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- DatePicker
- Replication
- datagridview 직접입력
- setInterval clear
- mosquitto.conf
- map이 undefined가 뜰 때
- allow_anonymouse
- 1883
- pm2 상태 확인
- pm2
- mySQL_Replication
- pm2 확인
- invalid data
- listener 1883
- setInterval 외부 정지
- 맥 어드레스
- DataGridView 직접 입력
- 공인IP
- 서버동기화
- setInterval 중지
- AntDesign
- transfer
- html #select #option #multiple
- 데이터테이블 데이터 넣기
- setInterval 정지
- mosquitto
- c# datagridview 데이터 넣기
- timepicker
- pm2 시작
- pm2 설치
- Today
- Total
목록프로그래밍/C# (105)
개발 노트
public partial class Form1 : Form { // 데이터를 삽입할 데이터 테이블을 생성합니다. DataTable table = new DataTable(); public Form1() { InitializeComponent(); // Table에 column을 추가합니다. table.Columns.Add("ID", typeof(string)); table.Columns.Add("제목", typeof(string)); table.Columns.Add("생성일", typeof(string)); table.Columns.Add("수정일", typeof(string)); // Column들이 추가된 Table을 DataGridView에 추가합니다. dataGridView1.DataSource..
데이터그리드에 직접 데이터 넣어보기 public Form1() { InitializeComponent(); DataTable table = new DataTable(); // column을 추가합니다. table.Columns.Add("ID", typeof(string)); table.Columns.Add("제목", typeof(string)); table.Columns.Add("구분", typeof(string)); table.Columns.Add("생성일", typeof(string)); table.Columns.Add("수정일", typeof(string)); // 각각의 행에 내용을 입력합니다. table.Rows.Add("ID 1", "제목 1번", "사용중", "2019/03/11", "201..
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace datagridex1 { public partial class Form1 : Form { private Timer timer; private int timerCount = 0; public Form1() { InitializeComponent(); // 테스트용으로 타이머 이용 timer = new Timer(..
사람으로 지정한 클래스의 이름을 지정하지 않았었음 public 손님1(){} 안에 this.이름 = "손님1"; 을 넣어서 해결
C# 마이크로소프트에서 개발한 객체지향 프로그래밍 언어이다. 그리고 Java와 C++와 비슷한 면들을 많이 가지고 있다. C#을 이야기 하면 자연스럽게 .NET Framework을 함께 이야기 해야할 정도로 C#은 .NET Framework을 이용하여 프로그래밍하는 대표적인 언어이다. 또 C#은 윈도우 프로그래밍, 웹 프로그래밍, 게임 및 모바일 프로그래밍 등 모든 영역에서 사용되는 범용 프로그래밍 언어이다. C# 프로그램 소스코드 C# 프로그램은 .cs 라는 확장자를 사용합니다. 예를들어 test.cs, test.aspx.cs, test.xaml.cs C++와 다르게 C#은 *,h과 같은 별도의 헤더 파일이 없습니다. C# 프로그램으로부터 실행 파일을 만들기 위해서는 비주얼 스튜디오를 사용하는 경우 C..
// 변수 //정수,실수,더블형, 문자열, 날자타입, 시간, // 정수---> 실수 // 실수----정수 // 문자열---> 정수, 실수 // 문자열 날짜 ---> 날자형식 // 날짜 ---> 문자열 // "2021-05-12" -30 //TODO: 변수, 상수, 조건문, 반복문( for, while, do while, continue, break) // 함수 - 인자 전달 방식 - 값 전달, 참조 전달 // 컴포넌트 사용 //TEXTBOX, Label, TabControl, Panel, combobox , checkbox, radiobutton, picturebox, button, progressbar // DatagridView // c# ftp 데이터 업데이트 해보기 FTP서버셋팅 1. 알FTP 열..