home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 January / VPR9701A.ISO / PROJ95 / EXAMPLES / TIMETRAK / SPLASH.FRM < prev    next >
Text File  |  1996-08-21  |  3KB  |  105 lines

  1. VERSION 2.00
  2. Begin Form frmSplash 
  3.    BorderStyle     =   3  'Fixed Double
  4.    ClientHeight    =   2235
  5.    ClientLeft      =   1230
  6.    ClientTop       =   1935
  7.    ClientWidth     =   4665
  8.    ControlBox      =   0   'False
  9.    FontBold        =   -1  'True
  10.    FontItalic      =   0   'False
  11.    FontName        =   "MS Pゴシック"
  12.    FontSize        =   9
  13.    FontStrikethru  =   0   'False
  14.    FontUnderline   =   0   'False
  15.    Height          =   2640
  16.    Left            =   1170
  17.    LinkTopic       =   "Form2"
  18.    MaxButton       =   0   'False
  19.    MinButton       =   0   'False
  20.    ScaleHeight     =   2235
  21.    ScaleWidth      =   4665
  22.    Top             =   1590
  23.    Width           =   4785
  24.    Begin SSPanel pnlMain 
  25.       Caption         =   "VB タイムシート オープニング画面"
  26.       FontBold        =   0   'False
  27.       FontItalic      =   0   'False
  28.       FontName        =   "MS Pゴシック"
  29.       FontSize        =   9
  30.       FontStrikethru  =   0   'False
  31.       FontUnderline   =   0   'False
  32.       Height          =   2235
  33.       Left            =   0
  34.       TabIndex        =   0
  35.       Top             =   0
  36.       Width           =   4665
  37.       Begin SSPanel Panel3D1 
  38.          FloodShowPct    =   0   'False
  39.          FloodType       =   1  'Left To Right
  40.          FontBold        =   -1  'True
  41.          FontItalic      =   0   'False
  42.          FontName        =   "MS Pゴシック"
  43.          FontSize        =   9
  44.          FontStrikethru  =   0   'False
  45.          FontUnderline   =   0   'False
  46.          ForeColor       =   &H00FFFFFF&
  47.          Height          =   510
  48.          Left            =   195
  49.          TabIndex        =   3
  50.          Top             =   465
  51.          Width           =   540
  52.          Begin Image Image1 
  53.             Height          =   480
  54.             Left            =   15
  55.             Picture         =   SPLASH.FRX:0000
  56.             Top             =   15
  57.             Width           =   480
  58.          End
  59.       End
  60.       Begin SSPanel pnlActivity 
  61.          Alignment       =   1  'Left Justify - MIDDLE
  62.          BevelOuter      =   0  'None
  63.          FontBold        =   0   'False
  64.          FontItalic      =   0   'False
  65.          FontName        =   "MS Pゴシック"
  66.          FontSize        =   9
  67.          FontStrikethru  =   0   'False
  68.          FontUnderline   =   0   'False
  69.          ForeColor       =   &H00000000&
  70.          Height          =   270
  71.          Left            =   630
  72.          TabIndex        =   2
  73.          Top             =   1575
  74.          Width           =   3360
  75.       End
  76.       Begin SSPanel pnlProgress 
  77.          BevelOuter      =   1  'Inset
  78.          FloodShowPct    =   0   'False
  79.          FloodType       =   1  'Left To Right
  80.          FontBold        =   -1  'True
  81.          FontItalic      =   0   'False
  82.          FontName        =   "MS Pゴシック"
  83.          FontSize        =   9
  84.          FontStrikethru  =   0   'False
  85.          FontUnderline   =   0   'False
  86.          ForeColor       =   &H00FFFFFF&
  87.          Height          =   225
  88.          Left            =   630
  89.          TabIndex        =   1
  90.          Top             =   1860
  91.          Width           =   3360
  92.       End
  93.    End
  94. End
  95.  
  96. Sub Form_Load ()
  97.  
  98. pnlMain.Top = 0
  99. pnlMain.Left = 0
  100. pnlMain.Width = frmSplash.ScaleWidth
  101. pnlMain.Height = frmSplash.ScaleHeight
  102.  
  103. End Sub
  104.  
  105.