일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- oracle
- windows
- 프로시저
- IIS
- replace()
- 윈폼
- aspnet
- MS
- Winform
- MSSQL
- 윈도우
- 자바스크립트
- 오라클
- CONVERT()
- DataGrid
- javascript
- 태그를 입력해 주세요.
- 비주얼스튜디오
- SSRS
- 단축키
- 마이크로소프트
- c#
- jQuery
- 리포팅서비스
- 엑셀
- attr()
- Excel
- microsoft
- 이클립스
- ASP
- Today
- Total
목록윈폼 (14)
DJ메탈짱™의 Free Style
OpenFileDialog 컨트롤을 사용하여 파일을 불러오고, 불러온 파일의 내용을 List 컬렉션에 담아서 반환한다. private void OpenFileDialog() { List rList = new List(); using (OpenFileDialog opd = new OpenFileDialog()) { opd.DefaultExt = "All files"; // 기본 파일타입 설정 opd.Filter = "All files (*.*)|*.*"; // 파일타입 opd.Multiselect = false; // 다중선택되지 않도록. string strAppDir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); opd.Initi..
WebBrowser Control에서 내용이 많아지는 경우에만 스크롤이 보이도록 해주고 싶을 때 아래 참고. // 스크롤을 사용하기 위해 기본적으로 속성 설정을 해주고. ScrollBarsEnabled = "True" // DocumentCompleted 이벤트에 아래와 같이 스크롤 설정을 해준다. private void wbNotice_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { this.wbNotice.Document.Body.Style = "overflow:auto"; }
###Textbox 글 입력시 특정 글자수가 되면 다음 컨트롤로 자동이동. Tab, Tab Order, Next, Control, Focus### // 이벤트 연결.this.txtDepApo.txtSearch.TextChanged += new EventHandler(FocusMove); /// /// 포커스이동/// /// /// private void FocusMove(object sender, EventArgs e){ TextBox txt = (TextBox)sender; if (txt.Text.Length == 3) // 이벤트 핸들러 설정된 컨트롤의 글자입력수가 3글자이면, { SendKeys.Send("{tab}"); // Tab키를 실행하고 Focus를 설정. (Tab Order 기준으로 이동..
// 입력한 값 선택을 위한 시작점을 전역변수로 설정. int _startIndex; private void button1_Click(object sender, EventArgs e) { // 입력한 값이 결과내용에 존재하면 해당 위치 시작점을 가져옴. _startIndex = textBox2.Text.IndexOf(this.textBox1.Text, _startIndex); // 결과값이 마지막에 도달하면 초기설정. if (_startIndex == -1) { // 결과값이 존재하지 않으면 이하 실행되지 않도록... _startIndex = textBox2.Text.IndexOf(this.textBox1.Text, 0); if (_startIndex == -1) { _startIndex = 0; ret..
Enum Keys를 사용하지 않고 .Net Framework 상위 버전에서는 아래와 같은 Enum Shortcut이 존재하는구나.... 이놈은 조합 가능한 키보드 정보를 명시적으로 잘 표현해주고 있음. Dictionary dic = new Dictionary(); foreach (Shortcut key in Enum.GetValues(typeof(Shortcut))) { dic.Add(key.ToString(), key.ToString()); } this.comboBoxKeys.FillData(dic.ToDataTable(), "Key", "Value", AddingItemMode.None); MSDN에서 상세한 내용 확인하기 http://msdn.microsoft.com/ko-kr/library/sys..
// 멀티 스크린을 사용하는 User인 경우라면 if (Screen.AllScreens.Count() > 1) { this.showOnMonitor(1); private void showOnMonitor(int showOnMonitor) { Screen[] sc; sc = Screen.AllScreens; Notice.DeptNoticeCreation f = new Notice.DeptNoticeCreation(); f.FormBorderStyle = FormBorderStyle.None; f.Left = sc[showOnMonitor].Bounds.Left; f.Top = sc[showOnMonitor].Bounds.Top; f.StartPosition = FormStartPosition.Manual;..
private void Form1_Load(object sender, EventArgs e) { foreach (System.Windows.Forms.Keys key in Enum.GetValues(typeof(System.Windows.Forms.Keys))) { comboBoxKeys.Items.Add(new { Value = key, Description = GetDescription(key) }); } comboBoxKeys.DisplayMember = "Description"; } private string GetDescription(System.Windows.Forms.Keys key) { switch(key) { case Keys.OemPipe: return "Better oem pipe d..
일반적으로 목록화면과 등록화면을 만든다고 했을때. 목록화면에서는 등록화면을 등록하거나 수정할 수 있는데... 이때 등록/수정화면에서 결과값이 반영이 되는 것으로 보려면 목록화면이 새로고침(Refresh) 되어야 하는데... 웹폼과 달리 윈폼에서는 아래와 같이 약간의 조작이 필요함. 출처 : http://stackoverflow.com/questions/3838618/refresh-mdi-parent-window-datagrid-after-closing-child-window-in-c-net-windows
유저컨트롤(UserControl), 텍스트박스(TextBox)에 Form 로딩시 Focus 설정하기... Form에서는 this.Textbox1.Focus() 와 같이 설정하면 Focus가 잘 먹는다... 하지만 UserControl에 있는 Textbox라면 Focus() 가 동작하지 않음.... 이럴땐 UserControl의 Load이벤트에서 Focus() --> Select() 를 사용하여 Focus 설정을 해보자.
Cell, Row에 Border 가 나오지 않도록 설정. 속성창 > DisplayLayout > Override > CellAppearance > BorderColor = "Transparent"속성창 > DisplayLayout > Override > RowAppearance > BorderColor = "Transparent" -------------------------------------------------------------------------------------------아래는 Online 도움말....using Infragistics.Win; private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraW..