وبلاگ رسمی علیرضا شهامت در بلاگ اسکای

وبلاگ رسمی علیرضا شهامت در بلاگ اسکای

وبلاگ رسمی علیرضا شهامت در بلاگ اسکای - تأسیس شده در سال 1396
وبلاگ رسمی علیرضا شهامت در بلاگ اسکای

وبلاگ رسمی علیرضا شهامت در بلاگ اسکای

وبلاگ رسمی علیرضا شهامت در بلاگ اسکای - تأسیس شده در سال 1396

VB6 - 001 - Hello-Goodbye

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