본문 바로가기 메뉴 바로가기

Mit

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

Mit

검색하기 폼
  • 분류 전체보기 (143)
    • Maui (7)
    • Xamarin (33)
    • WPF (47)
    • VBA (3)
    • C# WinForm (7)
    • ETC (42)
  • 방명록

분류 전체보기 (143)
On Error Resume Next

On Error Resume Next '에러 이면 Next For For i = 1 To 200AI = Sheet3.Range("A" & i + 5).Value 'A If Len(Sheet3.Range("B" & i + 5).Value) > 0 Then 'B On Error Resume Next '

VBA 2019. 3. 11. 19:36
비동기 소켓 서버

http://www.csharpstudy.com/net/article/11-비동기-Socket-서버

WPF 2019. 2. 26. 11:02
IP 할당(IPAddress)

Socket transferSock = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.IP); IPAddress[] ipadd = new IPAddress[1]; ipadd[0] = IPAddress.Parse("192.168.0.2");

WPF 2019. 2. 25. 15:41
소켓 통신

소켓통신 프로그래밍http://blog.naver.com/PostView.nhn?blogId=ege1001&logNo=220538424007&parentCategoryNo=&categoryNo=26&viewDate=&isShowPopularPosts=false&from=postView

C# WinForm 2019. 2. 25. 10:54
마이크로 비트

https://blog.naver.com/opendraft/220993385207 [ Micro:Bit ]초등 아이 코딩 교육을 위한 준비 마이크로 비트 ( MaQueen 차량) [출처] [ Micro:Bit ]초등 아이 코딩 교육을 위한 준비 마이크로 비트 ( MaQueen 차량)|작성자 라임패밀리

ETC 2019. 2. 22. 13:13
FileStream 읽어올때 한글깨짐 해결하자 ^^

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..

C# WinForm 2019. 2. 20. 10:56
C# 텍스트 박스 숫자만 입력

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 [개발자 공간]

C# WinForm 2019. 2. 19. 19:09
윈폼 프린터 세팅

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..

C# WinForm 2019. 2. 19. 13:41
contentpresenter checkbox casting error

wpf System.Windows.controls.contentpresenter checkbox casting error FrameworkElement element = this.dataGrid1.Columns[4].GetCellContent(dataGrid1.Items[Row_num]); object chk = FindVisualChild(element); if (chk != null) { CheckBox use2 = chk as CheckBox; if (use2.IsChecked ?? false) { MessageBox.Show("update1"); } else { MessageBox.Show("update2"); } } private childItem FindVisualChild(Dependency..

WPF 2018. 12. 18. 11:55
DataGrid 선택된 셀 좌표

private void dataGrid1_CellEditEnding(object sender, DataGridCellEditEndingEventArgs e) { // CellEditEnding 이벤트 후 선택된 셀 좌표 -- 이벤트 후 선택된 좌표 ( 이벤트 후 좌표로 실제 셀 좌표가 아님.) int Col_num = dataGrid1.CurrentCell.Column.DisplayIndex; int Row_num = dataGrid1.SelectedIndex; //이벤트 셀 좌표 -- 실제 이벤트 셀 int Col_num1 = e.Column.DisplayIndex; int Row_num1 = e.Row.GetIndex(); MessageBox.Show(Col_num1.ToString() + Row_n..

WPF 2018. 12. 11. 11:05
이전 1 ··· 11 12 13 14 15 다음
이전 다음
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
TAG
  • ssl_client_socket_impl.cc
  • Xamarin Firebase Phone Auth
  • Xamarin.Ios Firebase Phone SMS OTP Send
  • FileStream Add Byte
  • WPF Datagrid Cell Value Change
  • C# LINQ Left join
  • GetCellContent CheckBox Value
  • WPF Textbox
  • Xamarin.Ios Firebase Phone User Add
  • Embeded 한글Font적용
  • Linux SSH Multi Computer Join
  • Windows IIS FTP 디렉토리 목록 오류
  • Xamarin reCAPTCHA
  • WPF Scrollviewer in ScrollViwer
  • Xamarin Firebase Phone User Add
  • WPF Excel Export Microsoft.Office.Interop 성능향상(열 기준으로 복사)
  • c# Encrypt / Decrypt
  • 연산자 뒤에 피연산자가 없습니다.
  • Xamarin.Forms
  • ClickOnce 인증서 인증기간 변경
  • Xamarin SMS OTP Send
  • Label Text LineBreak in Xaml
  • 암호 마스터키
  • Entry '' has empty native path
  • SkiaSharp
  • Microcharts
  • 서버 수준의 URN 필터
  • Xamarin.Ios Firebase Phone Auth
more
«   2025/07   »
일 월 화 수 목 금 토
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
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바