본문 바로가기

프로그래밍181

[C#] opendialog 함수, OFD 간단한 사용법 private void button1_Click(object sender, EventArgs e) { OpenFileDialog OFD = new OpenFileDialog(); if (OFD.ShowDialog() == DialogResult.OK) { textBox1.Clear(); textBox1.Text = OFD.FileName; } } button, textbox를 한개씩 추가 후 button쪽 소스코드에 삽입. 아주 잘된다. 짞짞짞짜짝 2021. 3. 16.
[C#] 현재 경로, user 경로 등 유용한 경로 모음 m.blog.naver.com/PostView.nhn?blogId=zic6188610&logNo=221032462444&proxyReferer=https:%2F%2Fwww.google.com%2F [C# 실행경로, 시작경로, 현재경로] 사용 방법 안녕하세요. 여러분 '창미니'입니다. 제가 이번에 알려드릴 소스 코딩은 C# 에서 실행경로, 시작경로, 현... blog.naver.com insurang.tistory.com/171 2021. 3. 16.
[C#] 파일이름 변경하기 infodbbase.tistory.com/118 www.delftstack.com/ko/howto/csharp/how-to-rename-a-file-in-csharp/ using System.IO; private void button1_Click(object sender, EventArgs e) { string oldFile = null; string newFile = null; string filePath = null; oldFile = filePath + "\\" + oldFile; newFile = filePath + "\\" + newFile; System.IO.File.Move(oldFile, newFile); MessageBox.Show("Change!"); } 2021. 3. 16.
[C#] F1을 누르면 메세지 박스가 실행되는 프로그램 private void Form1_Load(object sender, EventArgs e) { this.KeyPreview = true; this.KeyDown += new KeyEventHandler(Form1_KeyDown); } void Form1_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode.ToString() == "F1") { MessageBox.Show("F1 pressed"); } } 2021. 3. 16.
[C#] 키보드 출력을 이용한 매크로 docs.microsoft.com/en-us/dotnet/api/system.windows.forms.sendkeys.send?redirectedfrom=MSDN&view=net-5.0#System_Windows_Forms_SendKeys_Send_System_String_ SendKeys.Send(String) Method (System.Windows.Forms) Sends keystrokes to the active application. docs.microsoft.com 11cc.tistory.com/8 Namespace: System.Windows.Forms SendKeys.Send("A"); //A키 입력 SendKeys.Send("{enter}"); //Enter키 입력 SendKey.Send.. 2021. 3. 16.
메이커스페이스 레이저커팅기 이용방법 1. dxf 파일을 준비한다. 나는 fusion360으로 준비했었지만, 프로그램에서 읽히지 않는 문제가 있어서 메이커 스페이스에 있는 PC에 Adobe illustrator로 대충 작업을 해서 AI 파일을 읽혀서 커팅을 하였다. 2. 레이저 커팅 전용 프로그램을 키고 Import를 눌러서 AI 파일이나 dxf 파일을 불러온다. 3. 레이저의 파워(세기)나 속도는 그쪽에서 제공해주는 가이드를 참고하면 된다. 4. cut인지, ingrave인지 불러와진 스케치의 선 색깔을 설정해주면 된다. 선 색깔별로 Cut을 할 것인지, Ingrave를 할 것인지 선택이 가능하다. 5. Download를 눌러서, Current Download를 선택하면, 덮어쓰시겠습니까? 라는 문구가 뜨는데 Yes 하면 된다. 6. 커팅.. 2021. 3. 14.