본문 바로가기
728x90

전체 글375

UrlEncode on metro style 못찾은거겠지만 이상하게도 urlencode 함수를 못찾아 결국은 클래스를 추가해 사용하게 되버렸음. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Windows.Security.Cryptography; using Windows.Security.Cryptography.Core; using Windows.Storage.Streams; namespace 0000 { class utils { public static string CONSUMER_KEY = "CONSUMER_KEY", CONSUMER_SECRET = "CONSUMER_SECRE.. 2013. 4. 27.
Windows App Certification Kit Error 아래 임시 디렉토리 파일을 모두 지우고 다시 실행 C:\Users\Administrator\AppData\Local\Microsoft\AppCertKit 2013. 4. 27.
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.
728x90