frm_welcome.frm

来自「vb编写的家庭理财软件源代码,可直接运行,我学习用的,还不错」· FRM 代码 · 共 101 行

FRM
101
字号
VERSION 5.00
Begin VB.Form frm_welcome 
   BackColor       =   &H80000018&
   BorderStyle     =   3  'Fixed Dialog
   ClientHeight    =   3435
   ClientLeft      =   255
   ClientTop       =   1410
   ClientWidth     =   4650
   ClipControls    =   0   'False
   ControlBox      =   0   'False
   Icon            =   "frm_welcome.frx":0000
   KeyPreview      =   -1  'True
   LinkTopic       =   "Form2"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   3435
   ScaleWidth      =   4650
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  '屏幕中心
   Begin VB.Label Label3 
      BackStyle       =   0  'Transparent
      Caption         =   "版本号:bate1.0"
      Height          =   375
      Left            =   3120
      TabIndex        =   2
      Top             =   2880
      Width           =   1455
   End
   Begin VB.Label Label2 
      BackStyle       =   0  'Transparent
      Caption         =   "Demon理财"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   36
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   975
      Left            =   600
      TabIndex        =   1
      Top             =   1920
      Width           =   4455
   End
   Begin VB.Label Label1 
      BackStyle       =   0  'Transparent
      Caption         =   "欢迎使用"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   36
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   975
      Left            =   720
      TabIndex        =   0
      Top             =   600
      Width           =   3015
   End
End
Attribute VB_Name = "frm_welcome"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Function A()
            Dim Code As String
            
            Code = GetSetting("Demon理财工具", "personal", "路径")
            If Code = "" Then
               frm_choose.Show
            Else
               Str_path = Code
               frm_login.Show
               Unload Me
            End If
End Function

Private Sub Form_Click()
            'Call A
            frm_login.Show
            Unload Me
End Sub

Private Sub Label1_Click()
            'Call A
            frm_login.Show
            Unload Me
End Sub

Private Sub Label2_Click()
            'Call A
            frm_login.Show
            Unload Me
End Sub

⌨️ 快捷键说明

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