일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 단축키
- Winform
- 태그를 입력해 주세요.
- jQuery
- IIS
- 마이크로소프트
- 비주얼스튜디오
- c#
- 자바스크립트
- ASP
- 윈도우
- microsoft
- 윈폼
- 프로시저
- aspnet
- MS
- 리포팅서비스
- windows
- 엑셀
- Excel
- DataGrid
- 이클립스
- SSRS
- oracle
- CONVERT()
- replace()
- MSSQL
- 오라클
- javascript
- attr()
- Today
- Total
DJ메탈짱™의 Free Style
// 멀티 스크린을 사용하는 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