module1.bas
来自「菜谱管理系统。比较简单的VB代码」· BAS 代码 · 共 25 行
BAS
25 行
Attribute VB_Name = "Module1"
Public fMainForm As frmMain
' Programed by James Letner 2003 (J-SOFT)
Sub Main()
'displays the splash screen
frmSplash.Show
frmSplash.Refresh
'Disabled because spash screen opens and closes so fast
'That the user cannot see it the disabled code is
'located in frmSplash and is ran off a timer
'Set fMainForm = New frmMain
'Load fMainForm
'Unload frmSplash
'fMainForm.Show
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?