selectwzForm.frm
资源名称:七八个vb游戏.rar [点击查看]
上传用户:tashmp
上传日期:2010-04-03
资源大小:882k
文件大小:5k
源码类别:
其他游戏
开发平台:
Visual Basic
- VERSION 5.00
- Begin VB.Form selectwzForm
- Caption = "打字文章选择"
- ClientHeight = 3720
- ClientLeft = 60
- ClientTop = 390
- ClientWidth = 4680
- LinkTopic = "Form1"
- ScaleHeight = 3720
- ScaleWidth = 4680
- StartUpPosition = 3 'Windows Default
- Begin VB.CommandButton Command2
- Caption = "取消"
- Height = 495
- Left = 2880
- TabIndex = 3
- Top = 3120
- Width = 1215
- End
- Begin VB.CommandButton Command1
- Caption = "确定"
- Height = 495
- Left = 360
- TabIndex = 2
- Top = 3120
- Width = 1215
- End
- Begin VB.Frame Frame1
- Caption = "选择你想练习的文章"
- Height = 1695
- Left = 360
- TabIndex = 1
- Top = 1320
- Width = 3855
- Begin VB.OptionButton Option4
- Caption = "great"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 570
- Left = 2400
- TabIndex = 7
- Top = 960
- Width = 1335
- End
- Begin VB.OptionButton Option3
- Caption = "Chang"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 570
- Left = 120
- TabIndex = 6
- Top = 960
- Width = 1335
- End
- Begin VB.OptionButton Option2
- Caption = "Davao"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 2400
- TabIndex = 5
- Top = 360
- Width = 1095
- End
- Begin VB.OptionButton Option1
- Caption = "girl"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 330
- Left = 240
- TabIndex = 4
- Top = 360
- Value = -1 'True
- Width = 855
- End
- End
- Begin VB.Image Image1
- Height = 690
- Left = 3960
- Picture = "selectwzForm.frx":0000
- Top = 360
- Width = 660
- End
- Begin VB.Label Label1
- BackStyle = 0 'Transparent
- Caption = "打字文章选择"
- BeginProperty Font
- Name = "方正舒体"
- Size = 24
- Charset = 134
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF8080&
- Height = 615
- Left = 480
- TabIndex = 0
- Top = 240
- Width = 3255
- End
- End
- Attribute VB_Name = "selectwzForm"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- If Option1.Value = True Then
- scrapname = "girl.txt"
- ' deforescrapname = scrapname
- mode = False
- ElseIf Option2.Value = True Then
- scrapname = "Davao.txt"
- ' deforescrapname = scrapname
- mode = False
- ElseIf Option3.Value = True Then
- scrapname = "Chang.txt"
- ' deforescrapname = scrapname
- mode = False
- Else
- scrapname = "great.txt"
- mode = False
- End If
- Me.Hide
- End Sub
- Private Sub Command2_Click()
- Me.Hide
- End Sub