자료제공 : http://hugeflow.com/ 이전 내용에 Silverlight의 네트워크에 작성한 내용이 있다. 2009/04/30 - [.NET/SilverLight] - Silverlight - Network 이 내용을 바탕으로 다음의 소스코드를 작성하였으므로 내용의 이해가 조금 부족하면 확인하시길... 예제는 프로젝트명 WebClientTest로 하였고, 먼저 Page.xaml 코드는 다음으로 C# 코드 using System; using System.Net; using System.Windows; using System.Windows.Controls; namespace WebClientTest { public partial class Page : UserControl { public Page..
유명한 MySQL 관리 툴이죠. phpMyAdmin 소스를 보던 중 좋은 내용을 발췌합니다. libraries\import.lib.php 파일에 있던 내용이고요. 코드는 아래와 같습니다. /** * Detects what compression filse uses * * @param string filename to check * @return string MIME type of compression, none for none * @access public */ function PMA_detectCompression($filepath) { $file = @fopen($filepath, 'rb'); if (!$file) { return FALSE; } $test = fread($file, 4); $len =..
이번엔 실버라이트 사용자 컨트롤을 만들어봅니다. 설명이 많이 부족하지만 따라하시다보면 성공하실수..... 사실 제가 부족해서 설명이 많이 부족하네요ㅠㅠ Generic.xaml Custom Control의 기본 모양을 정의하는 파일 Xmlns와 xmlns:x는 page.xaml에서 가져온다 public class MyControl : Control { public MyControl() { this.DefaultStyleKey = typeof(MyControl); } } Control을 상속 받고 기본 스타일 키를 현재 형식의 타입을 지정한다. 재정의할 메소드가 있는데, OnApplyTemplate 을 override 하여 메소드를 만든다 public override void OnApplyTemplate()..
OCS MCP 자격증.. 흠 봐야할게 많구나.. 언제 공부하지 ㅠㅠㅠ http://www.microsoft.com/learning/en/us/certification/cert-ocs.aspx#tab3 Microsoft Office Communications Server 2007 – Configuring Demonstrate that you possess the knowledge and skills that are required to deploy and administer an enterprise communications environment with Microsoft Office Communications Server 2007 R2. Candidates for this certification sho..
간만에 정말 유용한 사이트를 찾은 것 같다. 뭐 자주 볼일은 없는 C++ 이지만, Visual C++ 6 관련된 내용을 보게 된다면 거의 바이블이나 마찬가지인 사이트이다. 정말 내용이 방대한 -_ -;; 책을 안가지고 계시다면!! 여기를 한번 보면 좋을듯 후훗~ (아래 링크들은 Shift + Click 으로 봐주시길 ^ ^) http://www.informit.com/library/ http://www.informit.com/library/library.aspx?b=Visual_C_PlusPlus Visual C++ 6 Unleashed By MICKEY WILLIAMS and David Bennett More Information Visual C++ 6 Unleashed provides comprehe..
이번에는 Silverlight의 컨트롤을 정의해서 만들어봅니다. 예전에 강의들을 때 작성하고 다시보니 무슨소린지 모르겠네요.. ㅋㅋㅋ 그래도 전혀 무지한 것 보단 캡쳐라도 약간 있으니 ㅠㅠ 나중에 약간이라도 도움될 듯.. 부족하지만 1%라도 얻을게 있을지 모르니 정리 안된 상태로 등록합니다... ㅋㅋ Generic.xaml Custom Control의 기본 모양을 정의하는 파일 Xmlns와 xmlns:x는 page.xaml에서 가져온다 public class MyControl : Control { public MyControl() { this.DefaultStyleKey = typeof(MyControl); } } Control을 상속 받고 기본 스타일 키를 현재 형식의 타입을 지정한다. 재정의할 메소드..