Advertisement
jargon

frmTgProgress.frm

Feb 23rd, 2013
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. VERSION 5.00
  2. Begin VB.Form frmTgProgress
  3.    BackColor       =   &H00000000&
  4.    BorderStyle     =   1  'Fixed Single
  5.   Caption         =   "Taktikosgenesis"
  6.    ClientHeight    =   660
  7.    ClientLeft      =   45
  8.    ClientTop       =   390
  9.    ClientWidth     =   5520
  10.    Icon            =   "tg-progress.frx":0000
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.   MinButton       =   0   'False
  14.   ScaleHeight     =   660
  15.    ScaleWidth      =   5520
  16.    StartUpPosition =   3  'Windows Default
  17.   Begin VB.Label lblp
  18.       Alignment       =   2  'Center
  19.      BackStyle       =   0  'Transparent
  20.      ForeColor       =   &H00FFFFFF&
  21.       Height          =   255
  22.       Index           =   1
  23.       Left            =   120
  24.       TabIndex        =   1
  25.       Top             =   360
  26.       Width           =   5295
  27.    End
  28.    Begin VB.Label lblp
  29.       Alignment       =   2  'Center
  30.      BackStyle       =   0  'Transparent
  31.      Caption         =   "0%"
  32.       ForeColor       =   &H00FFFFFF&
  33.       Height          =   255
  34.       Index           =   0
  35.       Left            =   120
  36.       TabIndex        =   0
  37.       Top             =   120
  38.       Width           =   5295
  39.    End
  40. End
  41. Attribute VB_Name = "frmTgProgress"
  42. Attribute VB_GlobalNameSpace = False
  43. Attribute VB_Creatable = False
  44. Attribute VB_PredeclaredId = True
  45. Attribute VB_Exposed = False
  46. Private Tgdata As typeTgData
  47. Private Sub Form_Load()
  48.     frmTgProgress.Show
  49.     frmTgProgress.Caption = "Progress"
  50.     lblp(0).Caption = "0%"
  51.     lblp(1).Caption = ""
  52.     frmTgProgress.Refresh
  53. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement