⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmlogin.frm

📁 师兄做的一个利用VB结合mapx组件做的超市查询小系统
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmLogin 
   BorderStyle     =   0  'None
   Caption         =   "Form1"
   ClientHeight    =   4725
   ClientLeft      =   0
   ClientTop       =   0
   ClientWidth     =   6825
   KeyPreview      =   -1  'True
   LinkTopic       =   "Form1"
   ScaleHeight     =   4725
   ScaleWidth      =   6825
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  '屏幕中心
   Begin VB.Timer Timer1 
      Enabled         =   0   'False
      Interval        =   1000
      Left            =   1920
      Top             =   3360
   End
   Begin VB.Label Label1 
      Alignment       =   2  'Center
      BackStyle       =   0  'Transparent
      Caption         =   "欢迎使用西安市超市查询信息系统"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   15
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H000000C0&
      Height          =   495
      Left            =   1080
      TabIndex        =   0
      Top             =   960
      Width           =   4815
   End
   Begin VB.Image Image1 
      Height          =   4695
      Left            =   0
      Top             =   0
      Width           =   6855
   End
End
Attribute VB_Name = "frmLogin"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
  Dim strPath As String

  Image1.Width = Me.Width
  Image1.Height = Me.Height
  Image1.Left = 0
  Image1.Top = 0
  Image1.Stretch = True
  
  strPath = App.Path + "\Picture\"
  Image1.Picture = LoadPicture(strPath & "sx.jpg")
  
  Timer1.Interval = 1000
  Timer1.Enabled = True
  

End Sub



Private Sub Timer1_Timer()
  Dim i As Integer
    i = 1
    While (i <= 3)
       i = i + 1
    Wend
    
  Unload frmLogin
'  frmMain.Show
  Load frmMain
  frmMain.Show
  Timer1.Enabled = False
  
End Sub

⌨️ 快捷键说明

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