home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 5 / MasteringVisualBasic5.iso / protview / demowinx / data.1 / GRPHX.FRM (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1996-10-29  |  5.3 KB  |  173 lines

  1. VERSION 4.00
  2. Begin VB.Form GraphXFrm 
  3.    Caption         =   "Graphical Controls"
  4.    ClientHeight    =   3885
  5.    ClientLeft      =   2100
  6.    ClientTop       =   1365
  7.    ClientWidth     =   7530
  8.    Height          =   4290
  9.    Left            =   2040
  10.    LinkTopic       =   "Form2"
  11.    ScaleHeight     =   3885
  12.    ScaleWidth      =   7530
  13.    Top             =   1020
  14.    Width           =   7650
  15.    Begin PVDialLib.PVDial PDial3 
  16.       Height          =   855
  17.       Left            =   120
  18.       TabIndex        =   6
  19.       Top             =   2880
  20.       Width           =   1095
  21.       _Version        =   65536
  22.       _ExtentX        =   1931
  23.       _ExtentY        =   1508
  24.       _StockProps     =   64
  25.    End
  26.    Begin PVDialLib.PVDial PDial2 
  27.       Height          =   855
  28.       Left            =   120
  29.       TabIndex        =   5
  30.       Top             =   1800
  31.       Width           =   1095
  32.       _Version        =   65536
  33.       _ExtentX        =   1931
  34.       _ExtentY        =   1508
  35.       _StockProps     =   64
  36.    End
  37.    Begin PVDialLib.PVDial PDial1 
  38.       Height          =   855
  39.       Left            =   120
  40.       TabIndex        =   4
  41.       Top             =   720
  42.       Width           =   1095
  43.       _Version        =   65536
  44.       _ExtentX        =   1931
  45.       _ExtentY        =   1508
  46.       _StockProps     =   64
  47.    End
  48.    Begin VB.Label Label1 
  49.       Caption         =   $"grphx.frx":0000
  50.       Height          =   495
  51.       Left            =   480
  52.       TabIndex        =   3
  53.       Top             =   120
  54.       Width           =   6375
  55.    End
  56.    Begin PVProgressBarLib.PVProgressBar Pct3 
  57.       Height          =   855
  58.       Left            =   1560
  59.       TabIndex        =   2
  60.       Top             =   2880
  61.       Width           =   5895
  62.       _Version        =   65536
  63.       _ExtentX        =   10398
  64.       _ExtentY        =   1508
  65.       _StockProps     =   68
  66.       FillColor       =   16711680
  67.    End
  68.    Begin PVProgressBarLib.PVProgressBar Pct2 
  69.       Height          =   855
  70.       Left            =   1440
  71.       TabIndex        =   1
  72.       Top             =   1800
  73.       Width           =   5895
  74.       _Version        =   65536
  75.       _ExtentX        =   10398
  76.       _ExtentY        =   1508
  77.       _StockProps     =   68
  78.       ShowTickMarks   =   -1  'True
  79.       ShowPercentComplete=   0   'False
  80.       FillColor       =   65280
  81.    End
  82.    Begin PVProgressBarLib.PVProgressBar Pct1 
  83.       Height          =   855
  84.       Left            =   1440
  85.       TabIndex        =   0
  86.       Top             =   720
  87.       Width           =   5895
  88.       _Version        =   65536
  89.       _ExtentX        =   10398
  90.       _ExtentY        =   1508
  91.       _StockProps     =   68
  92.       ShowTickMarks   =   -1  'True
  93.       ShowNumbers     =   -1  'True
  94.       FillColor       =   255
  95.    End
  96. Attribute VB_Name = "GraphXFrm"
  97. Attribute VB_Creatable = False
  98. Attribute VB_Exposed = False
  99. Private Sub Pctbar321_GotFocus()
  100. End Sub
  101. Private Sub Pctbar322_GotFocus()
  102. End Sub
  103. Private Sub Pctbar323_GotFocus()
  104. End Sub
  105. Private Sub Form_Load()
  106. PDial1.value = 25
  107. Pct1.value = 25
  108. PDial2.value = 50
  109. Pct2.value = 50
  110. PDial3.value = 75
  111. Pct3.value = 75
  112. End Sub
  113. Private Sub PDial1_LineDown(ByVal Position As Long, TurnDial As Integer)
  114. Pct1.value = Position
  115. End Sub
  116. Private Sub PDial1_LineUp(ByVal Position As Long, TurnDial As Integer)
  117. Pct1.value = Position
  118. End Sub
  119. Private Sub PDial1_PageDown(ByVal Position As Long, TurnDial As Integer)
  120. Pct1.value = Position
  121. End Sub
  122. Private Sub PDial1_PageUp(ByVal Position As Long, TurnDial As Integer)
  123. Pct1.value = Position
  124. End Sub
  125. Private Sub PDial1_ThumbPosition(ByVal Position As Long, TurnDial As Integer)
  126. Pct1.value = Position
  127. End Sub
  128. Private Sub PDial1_ThumbTrack(ByVal Position As Long, TurnDial As Integer)
  129. Pct1.value = Position
  130. End Sub
  131. Private Sub PDial2_LineDown(ByVal Position As Long, TurnDial As Integer)
  132. Pct2.value = Position
  133. End Sub
  134. Private Sub PDial2_LineUp(ByVal Position As Long, TurnDial As Integer)
  135. Pct2.value = Position
  136. End Sub
  137. Private Sub PDial2_PageDown(ByVal Position As Long, TurnDial As Integer)
  138. Pct2.value = Position
  139. End Sub
  140. Private Sub PDial2_PageUp(ByVal Position As Long, TurnDial As Integer)
  141. Pct2.value = Position
  142. End Sub
  143. Private Sub PDial2_ThumbPosition(ByVal Position As Long, TurnDial As Integer)
  144. Pct2.value = Position
  145. End Sub
  146. Private Sub PDial2_ThumbTrack(ByVal Position As Long, TurnDial As Integer)
  147. Pct2.value = Position
  148. End Sub
  149. Private Sub PDial3_LineDown(ByVal Position As Long, TurnDial As Integer)
  150. Pct3.value = Position
  151. End Sub
  152. Private Sub PDial3_LineUp(ByVal Position As Long, TurnDial As Integer)
  153. Pct3.value = Position
  154. End Sub
  155. Private Sub PDial3_PageDown(ByVal Position As Long, TurnDial As Integer)
  156. Pct3.value = Position
  157. End Sub
  158. Private Sub PDial3_PageUp(ByVal Position As Long, TurnDial As Integer)
  159. Pct3.value = Position
  160. End Sub
  161. Private Sub PDial3_ThumbPosition(ByVal Position As Long, TurnDial As Integer)
  162. Pct3.value = Position
  163. End Sub
  164. Private Sub PDial3_ThumbTrack(ByVal Position As Long, TurnDial As Integer)
  165. Pct3.value = Position
  166. End Sub
  167. Private Sub PVDial1_Click()
  168. End Sub
  169. Private Sub PVDial1_KeyPress(KeyAscii As Integer)
  170. End Sub
  171. Private Sub PVDial1_LineUp(ByVal Position As Long, TurnDial As Integer)
  172. End Sub
  173.