일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 지승욱
- 훈스닷넷
- 스마트폰
- winmodev
- 윈도우폰
- 윈도우폰7
- 마이크로소프트
- 안드로이드
- 윈도우모바일
- 옴니아2
- 신석현
- 쉐어포인트코리아
- UX베이커리
- 헤이맨
- 윈모데브
- 소년포비
- 소년포비소프트
- MIX10
- 윈도우 모바일
- 서진호
- 신동혁
- 실버라이트 코리아
- 루나네스
- 황광진
- 데브피아
- 윈도데브
- 김춘배
- Today
- Total
목록전체 글 (396)
소년포비의 세계정복!!
이것저것 하다보면 GridView에 수동으로 다른 데이터를 바인딩 시켜야 할 때가 있다. 최근에 사용했을 때는 비연결지향으로 DataSet을 얻어서 DataBind를 시켰는데 이렇게 했을때 페이징이 제대로 되지 않는 문제점이 있었다. GridView에 DataBide를 꼭 저렇게 안하고 아래에 적혀있듯이 Datasource자체를 바꿔주는 ..
출처 : http://msdn.microsoft.com/ko-kr/library ··· %29.aspx 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 = ..
private void SaveToFile(string UploadDir, ref System.Web.HttpFileCollection UploadFile) { string FileName, FileExt; int FileCnt; long FileSize; for (FileCnt = 0; FileCnt < UploadFile.Count; FileCnt++) { System.Web.HttpPostedFile CurFile = UploadFile.Get(FileCnt); FileName = System.IO.Path.GetFileName(CurFile.FileName); FileSize = CurFile.ContentLength / 1000; // Kbyte 단위 if(FileName != "..
vb.net 소스코드를 c# 소스코드로(그 반대 역시) 변환해 주는 사이트가 있네요. http://www.developerfusion.com/tools/convert/vb-to-csharp/ 오픈소스프로젝트인 #develop editor(Visual Studio를 대체할 수 있는 IDE)의 소스 코드를 기반으로 했답니다.
API 이용해서 프레임이 없는 윈도우를 이동하고 싶을 때.. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Runtime.InteropServices; // for API namespace MoveWndWithAPISample { public partial class Form1 : Form { #region API 등록 public const int WM..
우선, www.opencf.com 에서 Smart Device Framework 2.2를 받아서 자신의 PC에 설치하고, VS2005 프로젝트에서 참조를 C:\Program Files\OpenNETCF\Smart Device Framework\2.2\Bin\OpenNETCF.Net.dll 추가한다. 버튼하나를 만들어 클릭하면 전화접속 인터넷 연결이 되도록했다. Example) view sourceprint?01.using OpenNETCF.Net; 02.// ... 생략 03. private Con..