일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 안드로이드
- 스마트폰
- 거제도
- 훈스닷넷
- 마이크로소프트
- MIX10
- 황광진
- 쉐어포인트코리아
- 윈모데브
- 주신영
- 김춘배
- 윈도우모바일
- 소년포비소프트
- winmodev
- 지승욱
- 헤이맨
- 데브피아
- 신동혁
- 실버라이트 코리아
- 서진호
- 소년포비
- 윈도우 모바일
- 윈도우폰
- 신석현
- 루나네스
- windows mobile 6.5
- 윈도데브
- 옴니아2
- UX베이커리
- 윈도우폰7
- Today
- Total
목록프로그램 세상 (207)
소년포비의 세계정복!!
오늘은 Microsoft 에서 제공해주는 차트컨트롤에 대해서 알아보도록 하겠습니다. 물론 무료입니다. 기존에 프로젝트에 차트 작업을 하기 위해 돈을 주고 구입하기 전까지는요 ^^ 차트 컨트롤을 사용하기 위해서는 아래의 컨트롤을 설치하셔야 합니다. 아래의 URL 에 가셔서 다운로드 후 설치 하셔야 합니..
01.using System; 02.using System.Drawing; 03.using System.Windows.Forms; 04.using System.IO.Ports; 05.using System.Threading; 06. 07.namespace Serial 08.{ 09. public partial class Form1 : Form 10. { 11. 12. public Form1() 13. { 14. InitializeComponent(); 15. 16. //텍스스 박스 초기화; 17. //rbText.ScrollBars = RichTextBoxScrollBars.Vertical; 18. 19. //Port 20. cmbPort.BeginUpdate(); 21. ..
주민번호채크를 구현하다보면 -으로 구분해서 입력을 받을 때가 있고, 아니면 구분없이 한번에 입력을 받을 경우가 있습니다. 그래서 실제 처리부분을 호출하는식으로 오버로딩을 해봤습니다. public bool isIDNum(string juminNo) { return IDNumProc(juminNo); } // 주민번호 채크 public bool isIDNum(string juminNo1, string juminNo2..
1. start02.cs 파일을 만듭니다. ================================================================ using System; using System.Web.UI; using System.Web.UI.WebControls; public class start02 : Page { public Label lblMsg; public void btnSubmit_OnClick(object sender, EventArgs e) { lblMsg.Text = "클릭을 하셨군요 !!"; } } ================================================================ 2. ..
안녕하세요 지난 9월 24일 이였죠.. REMIX 09 발표 자료를 다운로드 할수 있는 사이트가 있네요 http://msdn.microsoft.com/ko-kr/ee656504.aspx 혹시 못가신 분을 위해 올립니다. 좋은 하루 되세요
이것저것 하다보면 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..