일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
- windows mobile 6.5
- 김춘배
- 실버라이트 코리아
- 윈도데브
- 신석현
- 윈도우폰7
- UX베이커리
- MIX10
- 훈스닷넷
- 헤이맨
- 지승욱
- 주신영
- 루나네스
- 거제도
- 데브피아
- 신동혁
- 윈도우 모바일
- winmodev
- 황광진
- 윈도우모바일
- 소년포비소프트
- 윈모데브
- 안드로이드
- 스마트폰
- 윈도우폰
- 마이크로소프트
- 쉐어포인트코리아
- 옴니아2
- 서진호
- 소년포비
- Today
- Total
목록전체 글 (396)
소년포비의 세계정복!!
C# 에서 화면을 회전 시키는 -_-;; 먼저 using Microsoft.WindowsCE.Forms.dll 참조추가 하고 코드는 단 한줄...;; private static void screenRotation() { if (SystemSettings.ScreenOrientation == ScreenOrientation.Angle0) SystemSettings.ScreenOrientation = ScreenOrientation.Angle90; else SystemSettings.ScreenOrientation = ScreenOrientation.Angle0; }
SqlCeConnection conn = null; try { conn = new SqlCeConnection("Data Source = MyDatabase.sdf; Password ='<pwd>'"); conn.Open(); SqlCeCommand cmd = conn.CreateCommand(); cmd.CommandText = "INSERT INTO Customers ([Customer ID], [Company Name]) Values('NWIND', 'Northwind Traders')"; cmd.ExecuteNonQuery(); } finally { conn.Close(); } C#을 이용하면 이렇게 간단하게 SqlCeConnection ..
디비연결샘플-pis_guy.pdf 도움이 아주아주 많이 된네요^^ 필요하신분은 참고하셔서 코딩 하시길바래요 ^^
/********************************************************************************** * This sample application shows how to perform DML operations on a DataSet for LOB * (Large Objects) columns like images, sound files etc. through ODP.NET using C#. * * The connection to database is made using Oracle Data Provider for .Net (ODP .Net). * DataSet is an in-memory cache of data that contains data fi..
PDA 실시간 TV 보기 - Broadcast 인터넷으로 실시간 TV 보기 기능을 제공하는 방송국의 mms 주소를 모아놓은 프로그램입니다. 앞서 발표한 프로그램 이름(sojureader)을 Total Viewer로 확정하였습니다. 이 프로그램은 Total Viewer의 일부분으로 차후 정식으로 배포하기 전에 테스트용도로 올려봅니다. 실행환경 - .NET ..