일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- mySQL_Replication
- 서버동기화
- allow_anonymouse
- setInterval 외부 정지
- transfer
- 1883
- mosquitto
- DataGridView 직접 입력
- invalid data
- listener 1883
- pm2
- AntDesign
- 공인IP
- setInterval 정지
- c# datagridview 데이터 넣기
- Replication
- mosquitto.conf
- html #select #option #multiple
- timepicker
- map이 undefined가 뜰 때
- 데이터테이블 데이터 넣기
- setInterval 중지
- pm2 시작
- setInterval clear
- pm2 설치
- pm2 확인
- pm2 상태 확인
- 맥 어드레스
- datagridview 직접입력
- DatePicker
- Today
- Total
목록프로그래밍 (150)
개발 노트
private static void binaryAppendData(string filename, string stringData) { using (var fileStream = new FileStream(filename, FileMode.Append, FileAccess.Write, FileShare.None)) using (var bw = new BinaryWriter(fileStream)) { bw.Write(stringData); } } https://hong-study.tistory.com/109 C# 16 : File(파일) 파일 다루기 파일 정보와 디렉토리 정보 다루기 파일(File)은 컴퓨터 저장 매체에 기록되는 데이터의 묶음이다. 디렉토리(Diretory)는 파일이 위치하는 주소로, 파일(..
// 파일 경로를 지정 합니다. string savePath = @"c:\test.txt"; // 입력 할 text 값 string textValue = lotto+"\n"; // 기존 파일에 text 값을 추가 합니다. System.IO.File.AppendAllText(savePath, textValue, Encoding.Default);
[c# 시리얼 통신 클래스 만들기] 시리얼 포트 열기 private void buttonserialPort_Click(object sender, EventArgs e) { // 1. SerialPort 클래스 객체 생성 (COM5 포트를 사용) SerialPort sp = new SerialPort("COM5"); // 2. 시리얼포트 오픈 sp.Open(); // 3. 시리얼포트에서 한 라인 읽기 string data = sp.ReadLine(); Console.WriteLine(data); // 4. 시리얼포트 닫기 sp.Close(); Console.WriteLine("Press Enter to Quit"); Console.ReadLine(); } 시리얼포트 쓰기 private void button..
create문 써서 없는 테이블을 만들기 문제1 mysql에서 create문을 써서 테이블을 생성하였는데 한글깨짐현상이 발생하였다 그래서 데이터베이스를 utf8로 바꾸는 문장을 썼는데 해결되지 않았다 ALTER DATABASE [DB명] DEFAULT CHARACTER SET utf8; 그래서 테이블에서도 utf8를 바꾸어보아도 string alterTable = "ALTER TABLE `" + tbl + "` convert to character set utf8"; Create(alterTable); 해결되지 않았다. 해결1 구글링한결과 커넥션 부분에도 utf8을 바꿔야 한다고한다. 커넥션부분에 utf8를 넣으면 된다고 하였는데 connect하는부분에 _strArg.Append("Charset=utf8..
로또는 1부터 45까지 자연수를 가지고 있고 총 6번 고를수 있다 계산식은 45C6 공식은 45*44*43*42*41*40/6*5*4*3*2*1 이고 총 8,145,060이 나온다 https://github.com/zakigaebal/lottoAllNumber GitHub - zakigaebal/lottoAllNumber Contribute to zakigaebal/lottoAllNumber development by creating an account on GitHub. github.com 진행중임 /// ///텍스트파일 바이너리 두번 저장 ///텍스트로 1000을 숫자입력 ///1000번째 있는 숫자를 제거하기 ///다시 저장하기 ///텍스트박스를 하나 생성해서 문자열을 입력하는데 로또번호 10 15..