본문 바로가기

분류 전체보기

(511)
C# UltraGrid 방향키 KeyMapping private void KeyMapping() { #region Enter, Down, Up, Left, Right,Tab Key Mapping // Grid Enter Key Event Setting Infragistics.Win.UltraWinGrid.GridKeyActionMapping keyMapping1 = new Infragistics.Win.UltraWinGrid.GridKeyActionMapping(Keys.Enter, Infragistics.Win.UltraWinGrid.UltraGridAction.BelowCell, 0, 0, 0, 0); Infragistics.Win.UltraWinGrid.GridKeyActionMapping keyMapping2 = new Infragistics.W..
오라클 인덱스 생성 삭제 인덱스: 데이터베이스에서 테이블에 저장되어 있는 데이터를 좀 더 효율적이고 빠르게 찾기 위해 사용 오라클에서는 자동으로 인덱스를 검색하여 데이터를 조회한다. CREATE [ UNIQUE | BITMAP ] INDEX index_name ON table_name(column_name) [TABLESPACE tablespace_name]; UNIQUE : UNIQUE Index를 생성한다. BITMAP : BITMAP Index를 생성한다. index_name : 생성하고자 하는 인덱스 이름 table_name : 인덱스를 생성하고자 하는 테이블 이름 column_name : 인덱스로 생성하고자 하는 컬럼 이름 tablespace_name : 인덱스가 위치할(생성될) 테이블 스페이스 이름 예) CREATE ..
C# 파일 입출력 예제 사이버 강좌 report 문제이기도 했던;;; text 파일로 만들고 text 파일로 내보낸 파일을 다시 읽어 오는 코드 using System; using System.Collections.Generic; using System.Text; using System.IO; using System.Threading; namespace Project1 { class Class1 { public void Output() { StreamWriter F = new StreamWriter("c:\\report.txt"); F.WriteLine("1. 봄입니다 2. 여름입니다."); F.WriteLine("-----------------------"); F.WriteLine("3. 가을입니다. 4. 지금은 겨울이고 시..
직장인의 필수 아이템 눈치코치 무설치 파일 단축키로 메신저 대화창을 숨겨준다!!! 눈치코치 무설치 파일
오라클 날짜 연산 DATE - DATE는 일(DAY)로 계산 되어지며 기본적으로 날짜로 표시되기 때문에 다시 그걸 아래와 같이 계산하면 되겠죠? 일 = 24시간 = 24 * 60분 = 24* 60분 * 60초의 공식을 대입 시간: (A-B) * 24 분 : (A-B) * 24 * 60 초 : (A-B) * 24 * 60 * 60 예) 일로 계산 select sysdate - to_date('2011-02-14 오전 7:46:16', 'yyyy-mm-dd am hh:mi:ss') as newdate from dual; ---------------- NEWDATE 8.03563657407407407407407407407407407407 시간으로 계산 select (sysdate - to_date('2011-02-14 오전 7..
C# 엑셀 & CSV OleDb로 가져오기 읽어오기 첨부파일로 엑셀이나 CSV를 가져오면 DataTable로 변환하는 함수 1. 전송하는 폼 속성 2. 업로드된 파일의 정보를 가져온다 string strGroupName = Request["name"]; string strGroupInfo = Request["info"]; string strFileName; string strNewPath; string strFileExtension; string strXlsFile = Request.Files[0].FileName; System.IO.FileInfo fi = new System.IO.FileInfo(strXlsFile); strFileName = fi.Name; strFileExtension = fi.Extension; strNewPath = @"D:\T..
C# Excel Upload public class ExcelService { MessageUtil msgUtil = new MessageUtil(); #region Member Values private Excel.Application xlApp = null; private Excel.Workbook xlWorkBook = null; private Excel.Worksheet xlWorkSheet = null; #endregion #region Constructor /// /// Constructor /// public ExcelService() { // 생성자; } #endregion #region Excel Upload public string ExcelOpen() { try { OpenFileDialog openFile = ..
C# 울트라그리드 멀티헤더 private void InitGrid() { Util.SetGridFormat(uwgList1, null, 300, ScrollBarView.Vertical); uwgList1.DisplayLayout.AllowSortingDefault = AllowSorting.No; // 클릭시 수정 가능하도록 uwgList1.DisplayLayout.CellClickActionDefault = Infragistics.WebUI.UltraWebGrid.CellClickAction.Edit; Util.SetGridColumnFormat(uwgList1, "대분류(1차분류)", "CODE1", Unit.Percentage(30), HorizontalAlign.Left); Util.SetGridColumnFormat(u..