본문 바로가기
반응형

분류 전체보기4965

Back to the Future with Smart Clients [스마트클라이언트의 미래] Back to the Future with Smart Clients 곧다가올 스마트클라이언트. 그런데 작성일이 04년도네요. 요즘 스마트클라이언트에 대한 관심이 아주 많다. 내용은 천천히 읽어봐야지 스마트클라이언트 개발 관련 PPT (출처: 데브피아) Back to the Future with Smart Clients http://msdn.microsoft.com/en-us/library/ms953304.aspx Billy Hollis Elysian Consulting March 24, 2004 Summary: While Web applications have received the bulk of the interest over the last few years, improvements in the cl.. 2009. 2. 4.
끊임없이 노력해서 자신만의 분위기를 만들어야 한다 첫인상을 결정짓는 중요한 요인으로는 그 사람의 행동거지, 옷차림, 말투이다. 품위 있는 이미지는 하루 아침에 만들어지지 않는다. 끊임없이 노력해서 자신만의 분위기를 만들어야 한다. -에구치 가쓰히코 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.
반응형