메인폼의 버튼 클릭후 textbox1 값을 서브폼 label1값에 할당한다. // main formnamespace pos { public partial class Form1 : Form { Form2 Fx; public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { Fx.label1.Text = textBox1.Text; } private void Form1_Load(object sender, EventArgs e) { Fx = new Form2(); Fx.Show(); } } } // sub formnamespace pos { public partial class Form2 : For..
using System; using System.IO; using System.Text; //인코딩에 관한 내용이 들어있음 namespace ConsoleApplication1 { class Class1 { [STAThread] static void Main(string[] args) { Encoding encode = System.Text.Encoding.GetEncoding("ks_c_5601-1987"); FileStream fs = new FileStream(@"c:/temp/test.txt",FileMode.Open,FileAccess.Read); StreamReader sr = new StreamReader(fs,encode); //여기에 넣어주면 인코딩됨 string str = sr.Read..
12345678private void txtInterval_KeyPress(object sender, KeyPressEventArgs e){ //숫자만 입력되도록 필터링 if(!(char.IsDigit(e.KeyChar) || e.KeyChar == Convert.ToChar(Keys.Back))) //숫자와 백스페이스를 제외한 나머지를 바로 처리 { e.Handled = true; }} 출처: https://terrorjang.tistory.com/39 [개발자 공간]
https://www.c-sharpcorner.com/uploadfile/puranindia/pagesetupdialog-in-C-Sharp/https://godffs.tistory.com/324 // 프린터 네임확인printDialog1.PrinterSettings.PrinterName; printDialog1.Documnet = printDocument1printDocument1printPreviewDialog1.Documnet = printDocument1pageSetupDialog1.Documnet = printDocument1 프린터를 선택하여 인쇄https://docs.microsoft.com/ko-kr/dotnet/framework/winforms/advanced/how-to-choose-t..
- Total
- Today
- Yesterday
- Entry '' has empty native path
- 연산자 뒤에 피연산자가 없습니다.
- Xamarin.Forms
- C# LINQ Left join
- Xamarin reCAPTCHA
- 암호 마스터키
- Xamarin Firebase Phone User Add
- GetCellContent CheckBox Value
- FileStream Add Byte
- c# Encrypt / Decrypt
- Xamarin Firebase Phone Auth
- Xamarin.Ios Firebase Phone SMS OTP Send
- Xamarin.Ios Firebase Phone Auth
- SkiaSharp
- Xamarin.Ios Firebase Phone User Add
- Embeded 한글Font적용
- Windows IIS FTP 디렉토리 목록 오류
- 서버 수준의 URN 필터
- Label Text LineBreak in Xaml
- WPF Datagrid Cell Value Change
- WPF Excel Export Microsoft.Office.Interop 성능향상(열 기준으로 복사)
- ssl_client_socket_impl.cc
- WPF Scrollviewer in ScrollViwer
- Xamarin SMS OTP Send
- WPF Textbox
- ClickOnce 인증서 인증기간 변경
- Microcharts
- Linux SSH Multi Computer Join
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |