📄 减肥广告.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 '窗口缺省
Begin VB.CommandButton Command1
Caption = "开始"
Height = 495
Left = 1200
TabIndex = 1
Top = 8040
Width = 1575
End
Begin VB.Label Label6
BackColor = &H0080C0FF&
Caption = "咨询热线:1234567"
BeginProperty Font
Name = "宋体"
Size = 21.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 4200
TabIndex = 6
Top = 6840
Visible = 0 'False
Width = 4455
End
Begin VB.Label Label5
BackColor = &H0080C0FF&
Caption = "与众不同美容纤体公司"
BeginProperty Font
Name = "宋体"
Size = 21.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 495
Left = 4200
TabIndex = 5
Top = 6360
Visible = 0 'False
Width = 4455
End
Begin VB.Label Label4
BackColor = &H00FFFFC0&
Caption = "令你永远与众不同"
BeginProperty Font
Name = "楷体_GB2312"
Size = 21.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C000C0&
Height = 735
Left = 0
TabIndex = 4
Top = 7080
Visible = 0 'False
Width = 3615
End
Begin VB.Label Label3
BackColor = &H00FFFFC0&
Caption = "与众不同美容纤体"
BeginProperty Font
Name = "楷体_GB2312"
Size = 21.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C000C0&
Height = 735
Left = 0
TabIndex = 3
Top = 6360
Visible = 0 'False
Width = 3615
End
Begin VB.Label Label2
BackColor = &H00C0E0FF&
Caption = "减肥前"
BeginProperty Font
Name = "楷体_GB2312"
Size = 21.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 615
Left = 1200
TabIndex = 2
Top = 5520
Width = 1695
End
Begin VB.Image Image1
Height = 5040
Left = 720
Picture = "减肥广告.frx":0000
Stretch = -1 'True
Top = 240
Width = 3045
End
Begin VB.Image Image2
Height = 5040
Left = 720
Picture = "减肥广告.frx":16385
Stretch = -1 'True
Top = 240
Width = 2970
End
Begin VB.Label Label1
BackColor = &H00C0E0FF&
Caption = "减肥后"
BeginProperty Font
Name = "楷体_GB2312"
Size = 21.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 615
Left = 1200
TabIndex = 0
Top = 5520
Width = 1695
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim r As Integer
Private Sub Command1_Click()
Image1.Visible = True
Image2.Visible = False
Label1.Caption = "减肥后"
Label2.Caption = "减肥前"
r = r + 1
If r Mod 2 = 0 Then
Image1.Visible = False
Image2.Visible = True
Label1.Visible = True
Label2.Visible = False
Label3.Visible = True
Label4.Visible = True
Label5.Visible = True
Label6.Visible = True
Label5.BackColor = RGB(234 * Rnd, 222 * Rnd, 222 * Rnd)
Label6.BackColor = RGB(128 * Rnd, 132 * Rnd, 174 * Rnd)
For a = 0 To 4200
For b = 1 To 10000
Next b
Label3.Move a, 6360
Label4.Move a, 7080
t = t + 1
Label5.Move 4200, 11000 - 1.5 * t
Label6.Move 4200, 11480 - 1.5 * t
Next a
Else
Image1.Visible = True
Image2.Visible = False
Label1.Visible = False
Label2.Visible = True
Label3.Visible = False
Label4.Visible = False
Label5.Visible = False
Label6.Visible = False
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -