일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- 주신영
- 서진호
- 윈도우모바일
- UX베이커리
- 루나네스
- 소년포비
- 신동혁
- winmodev
- 스마트폰
- 지승욱
- MIX10
- 윈도데브
- 쉐어포인트코리아
- 거제도
- 황광진
- 데브피아
- 옴니아2
- 실버라이트 코리아
- 김춘배
- 신석현
- 헤이맨
- 윈도우폰
- windows mobile 6.5
- 안드로이드
- 훈스닷넷
- 마이크로소프트
- 소년포비소프트
- 윈도우폰7
- 윈모데브
- 윈도우 모바일
- Today
- Total
목록분류 전체보기 (396)
소년포비의 세계정복!!
using System; using System.Collections.Generic; using System.Text; using Microsoft.Win32; // 레지스트리관련 클래스를 쓰기위해 추가 namespace regiEx1 { class Program { static void Main(string[] args) { string regSubkey = "Software\\myTestKey"; // 서브키를 얻어온다. 없으면 null RegistryKey rk = Registry.LocalMachine.OpenSubKey(regSubkey, true); // 없으면 서브키..
using System; using System.IO; using System.Net; using System.Text; namespace Examples.System.Net { public class WebRequestGetExample { public static void Main () { // Get the object used to communicate with the server. FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://www.contoso.com/test.htm"); request.Method = WebRequestMethods.Ftp.UploadFile; // This example assumes the FTP sit..
[DllImport("Sensapi.dll")] private static extern int IsNetworkAlive(ref int dwFlags); // C#에서 상수를 ref 참조방식으로 넘길 수 없으므로 꼭 변수로 지정해야 합니다. private int NETWORK_LAN = 0x01; // 랜 카드 신호 유무 private int NETWORK_WAN = 0x02; // WAN 관련 유무(랜 카드 신호유무까지 포괄합니다.) private int NETWORK_AOL = 0x04; // 랜 카..
using System; using System.Net; using System.Management; namespace GetIPCS { /// <summary> /// Gets IP addresses of the local machine /// </summary> class classGetIPCS { /// <summary> /// Gets IP addresses of the local machine /// </summary> [STAThread] static void Main(string[] args) { ManagementObjectSearcher query = new ManagementObjectSearcher (”SELECT * FROM Win32..
ㆍ .NET Framework 2.0 부터 3.5 까지 살펴보고 최적의 어플리케이션을 개발할 수 있는 방법 심화 학습 ㆍ 사용자의 눈높이를 맞추기 위한 WPF ㆍ 이기종간의 통신 방법을 단일화 한 WCF ㆍ 간결한 비즈니스 정의 방법을 제공하는 WF ㆍ RIA(Rich Internet Application) 제작을 위한 Silverlight 학습 과 정 명 Implementing .NET Fr..
※ SHOW 앱스토어 Pre 사이트에 방문하시면 보다 많은 정보를 확인하실 수 있습니다. http://www.show.co.kr/sbrand2/showapps/pre/devedu.asp
DevRay 스터디 그룹을 모집합니다. 자세한 내용 보기: http://www.devpia.com/Maeul/Contents/Detail.aspx?BoardID=216&MAEULNo=8&no=1204&ref=1204 스터디 모집 양식: http://spreadsheets.google.com/viewform?hl=en&formkey=dGpKS3A5Y0tZMkU5ZFltaXp0MHRaQVE6MA 스터디스터디 의견 수렴: http://spreadsheets.google.com/viewform?hl=en&formkey=dEpoT1VKa2J5ZFRxTDVjcnYwY2xTTUE6MA
응용 프로그램의 중복 실행을 방지시키는 소스 입니다. static void Main() { System.Diagnostics.Process[] myProc = System.Diagnostics.Process.GetProcessesByName("WindowsApplication10"); // 여기서 Mulpumi는 프로젝트 속성의 프로젝트 이름 if(myProc.Length < 2) { Application.Run(new Form1()); } else { MessageBox.Show("이미 실행중입니다."); Application.E..