Dasar Pemrograman 1 Pemrograman Visual Basic 6.0 - PowerPoint PPT Presentation

About This Presentation
Title:

Dasar Pemrograman 1 Pemrograman Visual Basic 6.0

Description:

Dasar Pemrograman 1 Pemrograman Visual Basic 6.0 Iwan santosa, ST What is Visual Basic? Visual Basic is a tool that allows you to develop Windows (Graphic User ... – PowerPoint PPT presentation

Number of Views:238
Avg rating:3.0/5.0
Slides: 35
Provided by: Admini619
Category:

less

Transcript and Presenter's Notes

Title: Dasar Pemrograman 1 Pemrograman Visual Basic 6.0


1
Dasar Pemrograman 1Pemrograman Visual Basic 6.0
  • Iwan santosa, ST

2
What is Visual Basic?
  • Visual Basic is a tool that allows you to develop
    Windows (Graphic User Interface - GUI)
    applications. The applications have a familiar
    appearance to the user.
  • Visual Basic is event-driven, meaning code
    remains idle until called upon to respond to some
    event (button pressing, menu selection, ...).

3
Application (Project)
  • Forms - Windows that you create for user
    interface
  • Controls - Graphical features drawn on forms to
    allow user interaction (text boxes, labels,
    scroll bars, command buttons, etc.) (Forms and
    Controls are objects.)
  • Properties - Every characteristic of a form or
    control is specified by a property. Example
    properties include names, captions, size, color,
    position, and contents. Visual Basic applies
    default properties. You can change properties at
    design time or run time.
  • Methods - Built-in procedure that can be invoked
    to impart some action to a particular object.
  • Event Procedures - Code related to some object.
    This is the code that is executed when a certain
    event occurs.
  • General Procedures - Code not related to objects.
    This code must be invoked by the application.
  • Modules - Collection of general procedures,
    variable declarations, and constant definitions
    used by application.

4
Kontrol Menu
  • Restore
  • Move
  • Size
  • Minimize
  • Maximize
  • Close

5
Lingkungan
  • Floating
  • Sizeable
  • Dockable

6
Menu
  • Dengan Mouse
  • Dengan Keyboard

7
Main Window
8
Toolbox
9
Project Explorer
10
Windows Properties
11
Form Layout Windows
12
Jendela Kode
13
Membuka Aplikasi Baru
14
Keterangan Singkat
  • Standart EXE
  • Membuat aplkasi visual basic standart (umum)
  • ActiveX EXE
  • Membuat aplikasi activeX
  • ActiveX DLL
  • Membuat Library ActiveX
  • activeX Control
  • Membuat kontrol activeX
  • VB Application Wizard
  • Membuat aplikasi VB dengan bantuan wizard
  • VB Wizard Manager
  • IPusat Pengelolaan Wizard Visual Basic
  • IIS Aplication
  • Membuat aplikasi IIS (Internet Information
    Server)
  • DHTML Application
  • Membuat aplikasi DHTML

15
Membuka Aplikasi Yang Sudah ada
16
Alur Program VB
17
Bagian Kode
18
Structure of a Visual Basic Application
19
Penggunaan jendela Kode
  • Arti Warna text Pada Umumnya
  • Biru
  • Text ini merupakan kata kunci (reserved word)
  • Hijau
  • Text ini merupakan keterangan
  • Hitam
  • Tulisan biasa (kode, nama variabel dan yang
    lainnya)
  • Merah
  • Kode program yang salah

20
Bantuan Pada jendela kode
  • Tool Tips
  • Otomasi variabel
  • Jendela Attribut

21
Data, Variabel dan Konstanta
2
1

2
1
3
22
Type Data
  • Integer
  • Type data berupa bilangan bulat (-32.768
    32.767)
  • Byte
  • Decimal
  • String
  • Single
  • Double
  • Date
  • Currency
  • Long
  • Object
  • Varinant

23
Variabel
  • Merupakan tempat penyimpanan sementara

VARIABEL
24
Proses Pergantian Nilai Variabel
Si Usrok
USER
Si Usrok
Si Unyil
Si Usrok
Si Unyil
METODE
25
Deklarasi Variabel
  • Variabel dideklarasikan dengan Dim
  • Sintaksnya
  • Dim namavariabel As Type Data
  • Contoh
  • Dim Nama As String
  • Dim No As Integer
  • Dim TglLahir As Date

26
Variabel Global dan Local
  • Variabel Global variabel yang dapat diakses
    dari semua lokasi di dalam program.
  • Contoh
  • PUBLIC Counter As Integer (Pendeklarasian di
    Jendela modul kode)
  • Variabel Lokal variabel yang hanya dapat
    digunakan di lingkungannya sendiri.
  • Contoh
  • Pendeklarasian variabel di dalam event

27
Pemberian Nama Variabel
  • Nama diberikan untuk memperjelas kegunaan
    variabel tersebut

Tipe Data Awalan Contoh
Boolean Bln BlnStatus
Integer Int IntTotal
Single Sng SngJumlah
28
Aturan Suffix
  • Dim No As Integer
  • Bisa dipersingkat
  • Dim No

Tipe Data Simbol
Integer
Long
Single !
Double
String
Currency _at_
29
Konstanta
  • Media Penympanan nilai yang bersifat tetap
  • Contoh
  • TotalBiaya 0,5Produksi Ovr
  • Dimana Ovr 500000
  • Ovr KONSTANTA
  • Cara Penuliasan konstanta
  • Const namakonstanta As Tipe Nilai

30
Operator
  • Macam-macam Operator
  • Operator Aritmetik
  • Operator Perbandingan
  • Operator Logika

31
Operator Aritmatika
  • Operator yang dilakukan untuk melakukan
    perhitungan mamtematis.

Operator Arti Contoh
Penjumlahan X46
- Pengurangan X4-6
Perkalian X46
/ Pembagian X46
Perpangkatan X4/6
Penggambungan String Str1Str2
32
Tingkat Urutan
  • Pangkat
  • Perkalian dan Pembagian
  • Penjumlahan dan pengurangan
  • Contoh
  • Total 2532
  • 259
  • 109
  • 19

33
Operator Perbandingan
  • Contoh
  • Jumlah gt10

Operator Arti
Sama Dengan
gt Lebih Besar
lt Lebih Kecil
gt Lebih Besar atau sama
lt Kurang dari atau sama dengan
ltgt Tidak samadengan
34
Operator Logika
Operator Arti
AND Akan bernilai true jika kedua nilai yang dibandingkan juga true
OR Akan bernilai true jika salah satu nilai yang dibandingkan bernilai True
NOT Akan bernilai true jika yang dibandingkan bernilai false
Write a Comment
User Comments (0)
About PowerShow.com