ش | ی | د | س | چ | پ | ج |
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 |
VB6 - 001 - Hello-Goodbye:
frm file codes:
VERSION 5.00
Begin VB.Form Form1
Caption = "I can talk with you."
ClientHeight = 2895
ClientLeft = 60
ClientTop = 450
ClientWidth = 3360
LinkTopic = "Form1"
ScaleHeight = 2895
ScaleWidth = 3360
StartUpPosition = 3 'Windows Default
Begin VB.CommandButton r
Caption = "reset"
Height = 1575
Left = 360
TabIndex = 2
Top = 360
Width = 855
End
Begin VB.TextBox t
Height = 375
Left = 360
TabIndex = 1
Top = 2160
Width = 2655
End
Begin VB.CommandButton c
BackColor = &H80000002&
Caption = "speak"
Height = 1575
Left = 1320
TabIndex = 0
Top = 360
Width = 1695
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub c_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
t = " Hello!"
End Sub
Private Sub c_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
t = " Goodbye!"
End Sub
Private Sub r_Click()
t = ""
End Sub