VERSION 5.00 Begin VB.Form Form2 Caption = "Form2" ClientHeight = 2415 ClientLeft = 60 ClientTop = 345 ClientWidth = 7620 LinkTopic = "Form2" ScaleHeight = 2415 ScaleWidth = 7620 StartUpPosition = 3 'Windows Default Begin VB.HScrollBar Phi Enabled = 0 'False Height = 255 Left = 5040 Max = 90 TabIndex = 12 Top = 2040 Width = 1455 End Begin VB.HScrollBar Theta Enabled = 0 'False Height = 255 Left = 5040 Max = 90 TabIndex = 11 Top = 1680 Width = 1455 End Begin VB.HScrollBar PosX Enabled = 0 'False Height = 255 Left = 5040 Max = 255 TabIndex = 9 Top = 600 Width = 1935 End Begin VB.HScrollBar PosY Enabled = 0 'False Height = 255 Left = 5040 Max = 255 TabIndex = 8 Top = 960 Width = 1935 End Begin VB.HScrollBar PosZ Enabled = 0 'False Height = 255 Left = 5040 Max = 255 TabIndex = 7 Top = 1320 Width = 1935 End Begin VB.VScrollBar DirVer Height = 1695 Left = 4560 Max = 90 Min = -90 TabIndex = 5 Top = 120 Width = 255 End Begin VB.HScrollBar DirHor Height = 255 Left = 2040 Max = 180 Min = -180 TabIndex = 4 Top = 2040 Width = 2775 End Begin VB.HScrollBar LightB Height = 255 Left = 2400 Max = 255 TabIndex = 3 Top = 1320 Width = 1935 End Begin VB.HScrollBar LightG Height = 255 Left = 2400 Max = 255 TabIndex = 2 Top = 960 Width = 1935 End Begin VB.HScrollBar LightR Height = 255 Left = 2400 Max = 255 TabIndex = 1 Top = 600 Width = 1935 End Begin VB.CommandButton Command1 Caption = "Uscita" Height = 495 Left = 240 TabIndex = 0 Top = 840 Width = 1335 End Begin VB.Label Label6 Caption = "Direction" Height = 255 Left = 3600 TabIndex = 15 Top = 1680 Width = 855 End Begin VB.Label Label5 Caption = "Outer Cone" Height = 255 Left = 6600 TabIndex = 14 Top = 2040 Width = 855 End Begin VB.Label Label4 Caption = "Inner Cone" Height = 255 Left = 6600 TabIndex = 13 Top = 1680 Width = 855 End Begin VB.Label Label3 Caption = "Position" Height = 255 Left = 5040 TabIndex = 10 Top = 120 Width = 1215 End Begin VB.Label Label2 Caption = "Color" Height = 375 Left = 2520 TabIndex = 6 Top = 120 Width = 1455 End End Attribute VB_Name = "Form2" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Sub Command1_Click() End End Sub Private Sub DirVer_Change() Form1.LightDirVer = DirVer.Value End Sub Private Sub DirHor_Change() Form1.LightDirHor = DirHor.Value End Sub Private Sub LightR_Change() Form1.LightR = LightR.Value / 255 End Sub Private Sub LightG_Change() Form1.LightG = LightG.Value / 255 End Sub Private Sub LightB_Change() Form1.LightB = LightB.Value / 255 End Sub