36
1 CH3 VB表單設計 CH3 VB CH3 VB 表單設計 表單設計 視窗的靈魂 視窗的靈魂 F F ORM ORM

CH3 VB表單設計 - NTOU

  • Upload
    others

  • View
    3

  • Download
    0

Embed Size (px)

Citation preview

Microsoft PowerPoint - OPVB2 .ppt—Alan Cooper http://www.cooper.com/alan/father_of_vb.html
• =>VB2.0=>VB3.0=>VB4.0=>VB5.0 =>VB6.0(OOP) =>VB.net()
3
VB
6
100 PRINT "Program starting“ 110 INPUT H, W 130 IF H > 40 GOTO 400 140 PRINT "Paycheck is ";H*W;" with no overtime." 150 GOTO 500 400 V = H - 40 405 H = H - 40 410 PRINT "Paycheck is ";V*(W*1.5)+H*W;" with "; 420 PRINT V;" hours overtime." 500 PRINT "Program done!" 510 END
BASIC
7
(object)
• ( PROPERTY ) : ( )
?
• ?
• ?
: ()
9
……




19
• caption
• Label1 = “hello” • Label1.caption = “hello”
20
value • Image,picturebox picture • Timer Interval

21

• ()
• : calculator.vbp calculator.frm hjssub.bas
24
• (mousemove)

30

• : dim [as variant] • :click
dim x, y x=20 y=“10” msgbox x+y VB
msgbox CINT(x)+ CINT(Y) msgbox CSTR(x)+CSTR(Y)

36