반응형 분류 전체보기4680 끊임없이 노력해서 자신만의 분위기를 만들어야 한다 첫인상을 결정짓는 중요한 요인으로는 그 사람의 행동거지, 옷차림, 말투이다. 품위 있는 이미지는 하루 아침에 만들어지지 않는다. 끊임없이 노력해서 자신만의 분위기를 만들어야 한다. -에구치 가쓰히코 2009. 2. 1. Export UltraWinGrid to Excel (WinGird에서 엑셀로 내려받기) Downloading an UltraGrid to an Excel File, by letting the user choose the download location UltraGrid is a component from Infragistics, which provide a rich set of features for the Grid Control. And moreover, it can download the entire Grid (along with its content) to an Excel file. It retains the entire formatting, entire Column Positions and much more. UltraGridExcelExporter1 컨트롤을 이용합니다. 외국블로그.. 2009. 1. 30. 자식창이 현재 활성화 되어있는지 확인하는 로직 //자식창이 현재 활성화 되어 있는지 확인 private bool FormIsExist(Type tp) { foreach (Form ff in this.MdiChildren) { if (ff.GetType() == tp) { ff.Activate(); return true; } } return false; } //매소드 호출 if (FormIsExist(frm.GetType())) { frm.Dispose(); } else { frm.MdiParent = this; frm.MinimizeBox = false; frm.MaximizeBox = false; frm.Show(); } 조금 개량해서 아래와 같이 만들후 // 폼 호출하기 private void showChildForm(Form tform) { /.. 2009. 1. 28. Announcing the NetAdvantage CAB Extensibility Kit (NCEK) 궁금했다. 아래 그림의 sidebar 를 어떻게 만들수 있는 가? 결국 포럼 사이트에 질문을 했다. 답변이 왔다. Hi kwangho This is very easy once you get the hang of it. Create a new form. Add 3 Container controls to the form. (I use UltraGroupBox or Standard Panel if I need scrollbars). Add a UltraDockManager control to the form (this is a non visual control and will show at the bottom of your dev window) Now on the first Container control, .. 2009. 1. 22. 이전 1 ··· 1076 1077 1078 1079 1080 1081 1082 ··· 1170 다음 반응형