frmain.frm

来自「Gestion de una pizza rapida y sencilla」· FRM 代码 · 共 106 行

FRM
106
字号
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form frmain 
   BackColor       =   &H00000000&
   Caption         =   "VENKY'S PIZZA HOUSE-MAIN MENU"
   ClientHeight    =   7800
   ClientLeft      =   825
   ClientTop       =   450
   ClientWidth     =   10020
   ForeColor       =   &H00000000&
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   Picture         =   "frmain.frx":0000
   ScaleHeight     =   7800
   ScaleWidth      =   10020
   Begin MSComctlLib.ProgressBar pb1 
      Height          =   255
      Left            =   0
      TabIndex        =   0
      Top             =   7560
      Width           =   9975
      _ExtentX        =   17595
      _ExtentY        =   450
      _Version        =   393216
      Appearance      =   0
      Scrolling       =   1
   End
   Begin VB.Timer Timer2 
      Interval        =   90
      Left            =   4440
      Top             =   3960
   End
   Begin VB.Timer Timer1 
      Interval        =   60
      Left            =   5400
      Top             =   3960
   End
   Begin VB.Label Label2 
      AutoSize        =   -1  'True
      BackColor       =   &H80000012&
      BackStyle       =   0  'Transparent
      Caption         =   "100%"
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   13.5
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00000000&
      Height          =   360
      Left            =   5640
      TabIndex        =   2
      Top             =   7200
      Width           =   750
   End
   Begin VB.Label Label1 
      BackColor       =   &H00000000&
      Caption         =   "why eat pizza made by apprentices when you eat @ the pros venky's pizza house"
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   9.75
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H000000FF&
      Height          =   255
      Left            =   0
      TabIndex        =   1
      Top             =   120
      Width           =   7935
   End
End
Attribute VB_Name = "frmain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Timer1_Timer()
'marquee of text
Label1.Left = Label1.Left + 50
If Label1.Left >= 9930 Then
    Label1.Left = 0 - Label1.Width
    End If
End Sub


Private Sub Timer2_Timer()
'procress bar
Timer1.Enabled = True
pb1.Value = pb1.Value + 1
Label2.Caption = pb1.Value & "%"
If pb1.Value = 100 Then
frmindex.Show
Unload Me
End If
End Sub


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?