C#(61)
-
[CrystalReport] 가변 소수 단위
가변 소수 단위 수정 dim d as double d={Day.Max1} if 100
2018.08.20 -
메모리 초기화
GC.Collect();GC.WaitForPendingFinalizers();
2017.11.24 -
[WinForm] Listbox 문자에 색 입히기
private void listBoxTest_DrawItem(object sender, DrawItemEventArgs e) { if (listBoxTest.Items.Count == 0) return; // owner draw를 사용하여 ListBox에 색칠하기 Brush myBrush; string strText = listBoxTest.Items[e.Index].ToString(); if (strText.Contains("ERROR") == true) { // ERROR문자가 있으면 붉게 칠한다. myBrush = Brushes.Red; } else if (strText.Contains("SUCCESS") == true) { // SUCCESS문자가 있으면 파랗게 칠한다. myBrush = Brus..
2016.06.28 -
[WinForm] 현재실행된 경로찾기
Def_Value.CurrentDirectory = Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase); Def_Value.CurrentDirectory = Def_Value.CurrentDirectory.Substring(6, Def_Value.CurrentDirectory.Length - 6); 한번씩 현재 위치를 못읽어와 ini파일 생성시 꼬일때 사용하면 좋다.
2016.04.26 -
[Console] PPPoE 자동 연결
일단 자동연결 하기위해서는 먼저 기본적으로 등록을 해줘야 한다.기본적인 등록이 끝나면 rasdial.exe 등록된이름 isp이름 패스워드 단 패스워드가 앖는 경우에는 생략해도 무관하다.
2013.12.04 -
[CrystalReport] 보고서 설정
거지같은 크리스탈 리포트페이지 설정이 이따구로 되어 있고...;; 저걸 어떻게 알아~!!!rptViewer.ReportSource = rpt;rptViewer.Zoom(1); // Page WidthrptViewer.Zoom(2); // Whole Page
2013.10.31