回 帖 发 新 帖 刷新版面

主题:数制转换器,不够完善阿(包括界面代码)

VERSION 5.00
Begin VB.Form Form1 
   Caption         =   "Form1"
   ClientHeight    =   5610
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   7815
   LinkTopic       =   "Form1"
   ScaleHeight     =   5610
   ScaleWidth      =   7815
   StartUpPosition =   3  '窗口缺省
   Begin VB.CommandButton Command3 
      Caption         =   "结束"
      Height          =   500
      Left            =   5040
      TabIndex        =   8
      Top             =   4680
      Width           =   2000
   End
   Begin VB.CommandButton Command2 
      Caption         =   "继续"
      Height          =   500
      Left            =   2760
      TabIndex        =   7
      Top             =   4680
      Width           =   2000
   End
   Begin VB.CommandButton Command1 
      Caption         =   "开始转换"
      Height          =   500
      Left            =   480
      TabIndex        =   6
      Top             =   4680
      Width           =   2000
   End
   Begin VB.TextBox Text2 
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   15.75
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   615
      Left            =   2160
      TabIndex        =   3
      Top             =   1680
      Width           =   2055
   End
   Begin VB.TextBox Text1 
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   15.75
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   495
      Left            =   2640
      TabIndex        =   0
      Top             =   720
      Width           =   4455
   End
   Begin VB.Label Label4 
      Caption         =   "Label4"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   21.75
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   615
      Left            =   2160
      TabIndex        =   5
      Top             =   2880
      Width           =   5295
   End

回复列表 (共4个回复)

沙发

 Begin VB.Label Label3 
      Caption         =   "结果是"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   21.75
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   615
      Left            =   480
      TabIndex        =   4
      Top             =   2880
      Width           =   1455
   End
   Begin VB.Label Label2 
      Caption         =   "转换为"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   21.75
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   495
      Left            =   480
      TabIndex        =   2
      Top             =   1800
      Width           =   1455
   End
   Begin VB.Label Label1 
      Caption         =   "十进制数"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   21.75
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   495
      Left            =   480
      TabIndex        =   1
      Top             =   720
      Width           =   1935
   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()
Dim a As Long
Dim danwei As Integer
Dim s1 As String
    If Text1 = "" Then
        MsgBox "你没有输入要转换的数字啊"
        Call Command2_Click
        Exit Sub
    End If
    danwei = abs(Val(Text2))
    If Text2 = 0 Then
        MsgBox "你没有输入转换结果的进制啊"
        Call Command2_Click
        Exit Sub
    End If
    If danwei > 10 Then
        s1 = "-"
    Else
        s1 = ""
    End If
    a = Val(Text1)
    Label4 = Str(a Mod danwei)
    a = a \ danwei
    Do Until a = 0
    Label4 = Str(a Mod danwei) & s1 & Label4
    a = a \ danwei
    Loop
End Sub

Private Sub Command2_Click()
    Text1 = ""
    Text2 = ""
    Label4 = ""
End Sub

Private Sub Command3_Click()
 End
End Sub

板凳

你的VB语言的确很不错哦,有时间教我几招哦!www.szplc.net

3 楼

楼上真牛。2006年的帖被你翻出来了。

4 楼

BS

我来回复

您尚未登录,请登录后再回复。点此登录或注册