일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 옴니아2
- MIX10
- 스마트폰
- 윈도우모바일
- 루나네스
- 실버라이트 코리아
- 헤이맨
- 훈스닷넷
- winmodev
- 윈도우 모바일
- 신석현
- 윈도우폰
- 안드로이드
- 소년포비
- 신동혁
- 주신영
- 황광진
- 마이크로소프트
- 서진호
- 지승욱
- 김춘배
- 거제도
- 쉐어포인트코리아
- 소년포비소프트
- windows mobile 6.5
- 윈도우폰7
- 윈모데브
- 데브피아
- UX베이커리
- 윈도데브
- Today
- Total
목록프로그램 세상/C# (78)
소년포비의 세계정복!!
public static DataTable ConvertDataTable(string sXmlDataset) { FileStream fStream = File.Create(".\\MachineHistory.xml"); byte[] buf = Encoding.Default.GetBytes(sXmlDataset); fStream.Write(buf, 0, buf.Length); fStream.Close(); DataSet ds = new DataSet(); ds.ReadXmlSchema(".\\MachineHistory.xml"); ds.ReadXml(".\\MachineHistory.xml", XmlReadMode.Auto); return ds.Tables[0]; } DataTable dt = CUserV..
디비연결샘플-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..
Form1와 Form2를 만들었거든요. Form1에 값을 Form2에 넘겨서 Form2에 있는 다이얼로그박스에있는 버튼을 누르면 Form1에서 넘겨준 값을 뿌려주는 간단한 프로그램입니다. Form2안에 get,set 코드를 심어주면 잘 되는데.그렇게 하지않구 Data.cs라는 클래스를 하나 만들어서 거기에 get_set을 넣었습니다.어떻게 호출..
http://www.pinvoke.net/
오늘은 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..
출처 : 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 != "..