본문 바로가기

전체 글

TextBox 컨트롤 배열 생성 및 Event 구문 등록 방법 일정 수 이상의 컨트롤들을 배치 하거나, 값을 넣거나 할 경우 배열로 선언해서 처리하면, 조금이나마 보기도 좋고, 값을 넣기도 편하다 우선 아래와 같이 전역 변수를 먼저 선언한다. public TextBox[] txtBox; // 컨트롤 배열로 사용할 TextBox 전역변수 선언 public const int txtBox_num = 10; // 생성할 텍스트 박스 갯수 설정 실제로 TextBox를 생성하는 함수를 아래와 같이 코딩한다. private void create__txtBox() { Int32 idx; txtBox = new TextBox[txtBox_num]; for (idx = 0; idx < txtBox.Length; idx++) { // 새 인스턴스 생성 txtBox[idx] = new .. 더보기
신기한, 재밋는 물건 소개 해주는 사이트 https://www.funshop.co.kr/ 펀샵(funshop) New Lifestyle Store, FUNSHOP www.funshop.co.kr http://www.thisiswhyimbroke.com/new/ ThisIsWhyImBroke :: The Internet's Mall www.thisiswhyimbroke.com http://www.thinkgeek.com/ 불러오는 중입니다... http://shutuptakemymoney.com/ 불러오는 중입니다... 더보기
자주 찾는 웹페이지들 1. Windows용 Samll and Useful Freeware Utilites http://www.nirsoft.net/ NirSoft - freeware utilities: password recovery, system utilities, desktop utilities NirSoft web site provides a unique collection of small and useful freeware utilities, all of them developed by Nir Sofer. If you are looking for Windows password-recovery tools, click here. If you are looking for network tools, click here. To.. 더보기
ListBox, ListView, TextBox에서 항상 포커스를 제일 아래로 자동 옮기기 ListBox, ListView, TextBox에서 아래와 같이 포커스가 자동으로 제일 아래쪽으로 이동 되게 설정하지 않으면, 새로운 Text가 Append될 때 자동으로 Scroll Bar만 생성되고, 자동으로 스크롤되지 않아 불편하다. 따라서 아래와 같이 설정 해 두면 자동으로 스크롤 되면서, 가장 최근에 Append된 Text를 볼 수 있도록 된다. ListBox의 경우 listBox1.SelectedIndex = listBox1.Items.Count - 1; ListView의 경우 listView1.Items[listView1.Items.Count -1].EnsureVisible(); TextBox의 경우 tbMessage.SelectionStart = tbMessage.Text.Length; t.. 더보기
영어공부 보호되어 있는 글입니다. 더보기