본문 바로가기
728x90

전체 글364

zedgraph Vertical Bar With Labels Demo From ZedGraphWiki Jump to: navigation, search NOTE: The code on this page is for ZedGraph version 5. You can view the code for version 4 here. // Call this method from the Form_Load method, passing your ZedGraphControl public void CreateChart( ZedGraphControl zgc ) { GraphPane myPane = zgc.GraphPane; // Set the title and axis labels myPane.Title.Text = "Vertical Bar.. 2013. 4. 27.
EventType clr20r3 P9 system.io.fileloadexception 좀 모호한 문제.. 재현경로 : windows xp service pack 3 재현증상 : 처음 설치 후에는 문제가 없으나 pc 를 재부팅 하면 문제가 재현 됨 대응방안 : 윈도우 업데이트를 모두 완료하면 문제 재현이 안됨 2013. 4. 27.
윈도우 서비스 등록 sc command 2013. 4. 27.
메모리 사용량 체크 윈도우 폼을 만들어 실행할 때 현재 프로그램이 메모리를 얼마나 사용하는지, 어떤 동작에 메모리 변화가 어떤지 실시간으로 확인하고 싶은 경우가 많이 있죠. 그래서 다음과 같은 코드가 필요할 수 있습니다. 먼저 디자이너 코드에는 다음과 같이 Timer Class가 있어야 합니다. private System.Windows.Forms.Timer timer1; private void InitializeComponent() { this.timer1 = new System.Windows.Forms.Timer(this.components); // // timer1 // this.timer1.Enabled = true; this.timer1.Interval = 3000; // 3초마다 메모리 값을 읽어옵니다. this... 2013. 4. 27.
Delay public static void Delay(Single DelayInMilliseconds) { DateTime STime = DateTime.Now; TimeSpan span; do { Application.DoEvents(); System.Threading.Thread.Sleep(2); span = DateTime.Now - STime; } while (span.TotalMilliseconds < DelayInMilliseconds); } 2013. 4. 27.
현재 프로세스 , 메모리 총사용량 using System.Diagnostics; // Process pro = Process.GetCurrentProcess(); // 현재 프로세스 사용량 //메모리 총사용량 Process[] allPro = Process.GetProcesses(); long memory = 0; foreach (Process pro in allPro) { memory += pro.VirtualMemorySize64; } 2013. 4. 27.
asp 에서 soap 사용 설치파일 1. Soap toolkit http://www.microsoft.com/downloads/details.aspx?FamilyID=c943c0dd-ceec-4088-9753-86f052ec8450&DisplayLang=en 2. Msxml 4.0 http://www.microsoft.com/downloads/details.aspx?displaylang=ko&FamilyID=3144b72b-b4f2-46da-b4b6-c5d7485f2b42 2013. 4. 27.
asp 에서 md5 사용 MD5("string") 2013. 4. 27.
ms-sql 에서 select시 값이 없을때 처리방법 지식Q&A > 컴퓨터통신 > 소프트웨어 > 데이터베이스 질문: ms-sql 에서 select시 값이 없을때 처리방법. ifnow / 2010-06-15 20:09 'select CorpID from 테이블 where 조건식'에서 CorpID 값이 없을때 메세지에는 '(0개 행 적용됨)', 표 형태는 빈칸으로 나옵니다. 그러면 CorpID값은 null인가요? 아니면 그냥 빈값인가요? 처리를 어떻게 해야 할지 고민입니다. isnull을 써봤는데, 안되는거 보니까 null 값은 아닌거 같고... 답변 부탁드립니다. 답변: re: ms-sql 에서 select시 값이 없을때 처리방법. hero8088 / 2010-06-16 10:12 결과값이 항상 한건 (1Row) 이라는 전제하에 하는것이면 'select ma.. 2013. 4. 27.
728x90