일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MFC
- 시리얼 통신
- Firebird
- 데이터베이스
- 파라미터
- vb
- 입문
- MySQL
- dll
- 설치
- PostgreSQL
- Visual Studio 2005
- SQL
- 예제
- 소니
- 인스톨
- Delphi
- WIN32 SDK
- 셋업
- 파이어버드
- Visual Basic
- xml
- VB.NET
- SDK
- 기초
- 초보
- c#
- winsock
- 델파이
- 문자열
- Today
- Total
목록list (3)
프로그래밍 노트
using System;using System.Collections.Generic;using System.Linq;using System.Windows.Forms; namespace ListToArray{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } /// /// List를 Array로 복사 /// /// /// private void btnListToArray_Click(object sender, EventArgs e) { List testList = new List(); Test test = new Test(); test.name = "aaa"; test.weight = 50.3; testList.Add(t..
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Contnrs; type // ObjectList에 추가할 Object TMyObj = class(TObject) private FiState : integer; FsId : string; FiTemp : integer; public function Cal(iTemp: integer): integer; published property State : integer read FiState write FiState; property ID : string read FsId write FsId; e..
리스트 구조를 파일에 쓰고 읽는 예제이다. 나는 머리가 안좋아서 그런지 리스트 구조가 깨끗하게 이해가 안된다. -.-;; // 리스트 구조 파일 #define DEBUG #include #include // 키 // -------------------------------------------------- typedef int key; // 키 입력 int input_key(char *szDisp, key *pKey) { printf("%s", szDisp); if(scanf("%d", pKey) != 1) return 0; // 입력 에러 return (*pKey > 0); // 입력 코드 양수 체크 } // 키 비교 int compare_key(key KeyA, key KeyB) { return (K..