|
Visual Basic 들어가기전에... (기본용어에 대해)
2) 특징과 용어를 알아봅시다!
3) 화면구성
4) 비주얼베이직 폼과 Command버튼
5) 자료형 - 부동형 (single, Double)
6) 실습하기 (1)
7) 자료형 - Date형
8) 자료형 - Date형 (실습)
|
- 페이지 17페이지
- 가격 2,000원
- 등록일 2004.09.03
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
Visual Basic and SQL Server, Microsoft press, pp 555-780.
3. 이이표, 김병세, 1998, Microsoft Visual Basic Bible 6.0, 삼양 출판사,pp 474-619.
4. G.F.Luger, W.A.Stubblefield, 1989, ARTIFICIAL INTELLIGENCE and the Design of Expert Systems, The Benjamin/ Cummings Publing Company.
5. Peter Jackson, 1990
|
- 페이지 9페이지
- 가격 1,300원
- 등록일 2002.12.06
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
)
End Sub
Private Sub optRed_Click()
lblField.BackColor = RGB(255, 0, 0)
End Sub
Private Sub optYellow_Click()
lblField.BackColor = RGB(255, 252, 0)
End Sub
Private Sub tmrMover_Timer()
If chkLower.Value = 1 And chkRight.Value = 1 Then \'아래쪽 오른쪽으로 이동
If img5Pgif.Left < 12960 Then \'레이
|
- 페이지 9페이지
- 가격 800원
- 등록일 2007.04.12
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
암호화 기법중 하나의 DEC 암호화 방식으로 만든 프로그램 전체 소스입니다.
MSDN을 참고하였으며 기말프로젝트 A+받은 특급(?) 소스입니다.
주석문 자세히 되어있습니다..
비주엘 베이직 닷넷으로 만든 암호화 프로그램이 거의 없어서 희귀
|
- 페이지 1페이지
- 가격 1,500원
- 등록일 2007.12.17
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
메신저 프로그램 소스 중 일부입니다.
'///////////////// 서버에서 온 데이터를 처리... ///////////////
Private Sub Client_Sock_DataArrival(ByVal bytesTotal As Long)
On Error Resume Next
Do Until SendReady = True
Loop
Dim TxtData As String '전송받는 데이터
Dim VarTxtD
|
- 페이지 20페이지
- 가격 5,000원
- 등록일 2007.05.11
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
이 프로그램은 비주얼베이직을 이용하여 만든 계산기로써, 기능은
1. + - * / 연산기능
2. 양수, 음수 부호 변환기능
3. 소수점 입력 및 연산기능
4. Backspace (마지막 자리수 지움) 기능
5. C(clear), CE(Clear error) 기능
을 포함하고 있습니다. 제
|
- 페이지 1페이지
- 가격 1,200원
- 등록일 2005.04.14
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
#define LOOP 10
#define MAX 1000
int list[MAX], sorted[MAX];
int count;
void merge_sort(int list[], int n);
void merge_pass(int list[], int sorted[], int n, int s);
void merge(int list[
|
- 페이지 1페이지
- 가격 800원
- 등록일 2012.07.08
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include<stdio.h>
#include<math.h>
#include<time.h>
#include<string.h>
#include<stdlib.h>
#define LOOP 10
#define MAX 1000
int d, e, n, count, index, count1;
int data[MAX], list1[MAX], list2[MAX];
int seq_srch(int data[], int k);
int selection_sort(int l
|
- 페이지 1페이지
- 가격 800원
- 등록일 2012.07.08
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#define LOOP 10
#define MAX 1000
int data[MAX];
int e, n, count, index;
int selection_sort(int data[], int n);
int bin_srch(int data[], int k);
int inter_srch(int data[], int k);
void main() {
int i
|
- 페이지 1페이지
- 가격 800원
- 등록일 2012.07.08
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <math.h>
#define LOOP 10
#define MAX 1000
int list1[MAX], list2[MAX];
int n, count, left, right;
int selection_sort(int list1[], int n);
void quicksort(int list2[], int left, int right);
void
|
- 페이지 1페이지
- 가격 800원
- 등록일 2012.07.08
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|