frmFlash.frm
上传用户:yexiandon
上传日期:2022-07-12
资源大小:895k
文件大小:2k
源码类别:

百货/超市行业

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frmFlash 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    ClientHeight    =   1020
  5.    ClientLeft      =   4980
  6.    ClientTop       =   5145
  7.    ClientWidth     =   6090
  8.    ClipControls    =   0   'False
  9.    ControlBox      =   0   'False
  10.    Icon            =   "frmFlash.frx":0000
  11.    KeyPreview      =   -1  'True
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    Moveable        =   0   'False
  15.    ScaleHeight     =   1020
  16.    ScaleWidth      =   6090
  17.    ShowInTaskbar   =   0   'False
  18.    Begin VB.Label lbtxt 
  19.       Caption         =   "请稍候..."
  20.       BeginProperty Font 
  21.          Name            =   "楷体_GB2312"
  22.          Size            =   15
  23.          Charset         =   134
  24.          Weight          =   400
  25.          Underline       =   0   'False
  26.          Italic          =   0   'False
  27.          Strikethrough   =   0   'False
  28.       EndProperty
  29.       Height          =   300
  30.       Left            =   840
  31.       TabIndex        =   0
  32.       Top             =   360
  33.       Width           =   4095
  34.    End
  35. End
  36. Attribute VB_Name = "frmFlash"
  37. Attribute VB_GlobalNameSpace = False
  38. Attribute VB_Creatable = False
  39. Attribute VB_PredeclaredId = True
  40. Attribute VB_Exposed = False
  41. '****************************************************************************
  42. '人人为我,我为人人
  43. '枕善居收藏整理
  44. '发布日期:2008/01/21
  45. '描    述:汽车维修管理系统SQL2000版
  46. '网    站:http://www.Mndsoft.com/  (VB6源码博客)
  47. '网    站:http://www.VbDnet.com/   (VB.NET源码博客,主要基于.NET2005)
  48. 'e-mail  :Mndsoft@163.com
  49. 'e-mail  :Mndsoft@126.com
  50. 'OICQ    :88382850
  51. '          如果您有新的好的代码别忘记给枕善居哦!
  52. '****************************************************************************
  53. Private Sub Form_Load()
  54.     Move frmMain.Width / 2 - Me.Width / 2, frmMain.Height / 3
  55.     SetWindowPos Me.hwnd, -1, 0, 0, 0, 0, 3
  56.     frmMain.Enabled = False
  57. End Sub
  58. Private Sub Form_Unload(Cancel As Integer)
  59.     frmMain.Enabled = True
  60. End Sub