www.pudn.com > 转换成汉字大写金额.zip > Form1.frm


VERSION 5.00 
Begin VB.Form Form1  
   Caption         =   "Form1" 
   ClientHeight    =   3195 
   ClientLeft      =   60 
   ClientTop       =   345 
   ClientWidth     =   4680 
   LinkTopic       =   "Form1" 
   ScaleHeight     =   3195 
   ScaleWidth      =   4680 
   StartUpPosition =   3  'Windows Default 
   Begin VB.CommandButton Command1  
      Caption         =   "Change" 
      Height          =   375 
      Left            =   915 
      TabIndex        =   2 
      Top             =   2520 
      Width           =   1545 
   End 
   Begin VB.TextBox Text2  
      BeginProperty Font  
         Name            =   "MS Sans Serif" 
         Size            =   9.75 
         Charset         =   0 
         Weight          =   400 
         Underline       =   0   'False 
         Italic          =   0   'False 
         Strikethrough   =   0   'False 
      EndProperty 
      Height          =   1185 
      Left            =   315 
      TabIndex        =   1 
      Top             =   990 
      Width           =   4020 
   End 
   Begin VB.TextBox Text1  
      BeginProperty Font  
         Name            =   "MS Sans Serif" 
         Size            =   9.75 
         Charset         =   0 
         Weight          =   400 
         Underline       =   0   'False 
         Italic          =   0   'False 
         Strikethrough   =   0   'False 
      EndProperty 
      Height          =   405 
      Left            =   345 
      TabIndex        =   0 
      Top             =   360 
      Width           =   3540 
   End 
End 
Attribute VB_Name = "Form1" 
Attribute VB_GlobalNameSpace = False 
Attribute VB_Creatable = False 
Attribute VB_PredeclaredId = True 
Attribute VB_Exposed = False 
Private Sub Command1_Click() 
    If IsNumeric(Text1.Text) Then 
        Text2.Text = Num2Money(Text1.Text) 
    Else 
        MsgBox "请在第一个文本框中输入数字" 
    End If 
End Sub