C#(22)
-
C#___Delegate 2020.02.24
-
RichTextBox 붙여넣기
namespace WindowsFormsApp10 { public partial class Form1 : Form { /* RichTextBox 문자 시작점 */ private int _TextStartIndex = 0; /* RichTextBox 붙여넣기한 데이터 저장 */ private string _strPasteText = null; public Form1() { InitializeComponent(); /* PreviewKeyDown 이벤트 등록 */ richTextBox1.PreviewKeyDown += new PreviewKeyDownEventHandler(RichTextBox_PreviewKeyDown); /* TextChanged 이벤트 등록 */ richTextBox1.TextChang..
2020.01.15 -
2차원 배열 크기구하기
Object[,] excelRW.CellData; for ( int y = 1; y
2020.01.15 -
대소문자 숫자 구분 2020.01.15
-
Array Copy ( "C" Memcpy = "C#" Buffer.BlockCopy )
byte, int, double, float, long, char 형식의 배열은 사용 가능 하나 String 배열은 사용 할 수 없다.
2020.01.15 -
Resources Image ( ICON ) 2020.01.15
-
Timer Event ( System.Timers.Timer ) 2020.01.15
-
Timer Event ( System.Windows_Forms.Timer ) 2020.01.15
-
Folder Browser Dialog 2020.01.15
-
올림 / 반올림 / 버림 2020.01.15