-
Notifications
You must be signed in to change notification settings - Fork 2
/
PROYECTO.FRM
143 lines (131 loc) · 4.97 KB
/
PROYECTO.FRM
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
VERSION 5.00
Object = "{6B7E6392-850A-101B-AFC0-4210102A8DA7}#1.3#0"; "COMCTL32.OCX"
Begin VB.Form frmProyecto
BorderStyle = 5 'Sizable ToolWindow
Caption = "Proyecto"
ClientHeight = 5325
ClientLeft = 2820
ClientTop = 2175
ClientWidth = 3690
ControlBox = 0 'False
Icon = "Proyecto.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 5325
ScaleWidth = 3690
ShowInTaskbar = 0 'False
Begin ComctlLib.TreeView treeProyecto
Height = 5295
Left = 0
TabIndex = 0
Top = 0
Width = 3645
_ExtentX = 6429
_ExtentY = 9340
_Version = 327682
Indentation = 529
LabelEdit = 1
Style = 7
ImageList = "imgProyecto"
Appearance = 1
End
Begin ComctlLib.ImageList imgProyecto
Left = 0
Top = 0
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 16
ImageHeight = 16
MaskColor = 12632256
UseMaskColor = 0 'False
_Version = 327682
BeginProperty Images {0713E8C2-850A-101B-AFC0-4210102A8DA7}
NumListImages = 16
BeginProperty ListImage1 {0713E8C3-850A-101B-AFC0-4210102A8DA7}
Picture = "Proyecto.frx":058A
Key = ""
EndProperty
BeginProperty ListImage2 {0713E8C3-850A-101B-AFC0-4210102A8DA7}
Picture = "Proyecto.frx":0ADC
Key = ""
EndProperty
BeginProperty ListImage3 {0713E8C3-850A-101B-AFC0-4210102A8DA7}
Picture = "Proyecto.frx":102E
Key = ""
EndProperty
BeginProperty ListImage4 {0713E8C3-850A-101B-AFC0-4210102A8DA7}
Picture = "Proyecto.frx":1580
Key = ""
EndProperty
BeginProperty ListImage5 {0713E8C3-850A-101B-AFC0-4210102A8DA7}
Picture = "Proyecto.frx":1AD2
Key = ""
EndProperty
BeginProperty ListImage6 {0713E8C3-850A-101B-AFC0-4210102A8DA7}
Picture = "Proyecto.frx":2024
Key = ""
EndProperty
BeginProperty ListImage7 {0713E8C3-850A-101B-AFC0-4210102A8DA7}
Picture = "Proyecto.frx":2576
Key = ""
EndProperty
BeginProperty ListImage8 {0713E8C3-850A-101B-AFC0-4210102A8DA7}
Picture = "Proyecto.frx":2670
Key = ""
EndProperty
BeginProperty ListImage9 {0713E8C3-850A-101B-AFC0-4210102A8DA7}
Picture = "Proyecto.frx":276A
Key = ""
EndProperty
BeginProperty ListImage10 {0713E8C3-850A-101B-AFC0-4210102A8DA7}
Picture = "Proyecto.frx":287C
Key = ""
EndProperty
BeginProperty ListImage11 {0713E8C3-850A-101B-AFC0-4210102A8DA7}
Picture = "Proyecto.frx":298E
Key = ""
EndProperty
BeginProperty ListImage12 {0713E8C3-850A-101B-AFC0-4210102A8DA7}
Picture = "Proyecto.frx":2AA0
Key = ""
EndProperty
BeginProperty ListImage13 {0713E8C3-850A-101B-AFC0-4210102A8DA7}
Picture = "Proyecto.frx":2BB2
Key = ""
EndProperty
BeginProperty ListImage14 {0713E8C3-850A-101B-AFC0-4210102A8DA7}
Picture = "Proyecto.frx":2CC4
Key = ""
EndProperty
BeginProperty ListImage15 {0713E8C3-850A-101B-AFC0-4210102A8DA7}
Picture = "Proyecto.frx":2DD6
Key = ""
EndProperty
BeginProperty ListImage16 {0713E8C3-850A-101B-AFC0-4210102A8DA7}
Picture = "Proyecto.frx":2EE8
Key = ""
EndProperty
EndProperty
End
End
Attribute VB_Name = "frmProyecto"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Load()
Me.Top = Main.Height + 30
Me.Left = 0
End Sub
Private Sub Form_Resize()
treeProyecto.Top = 0
treeProyecto.Left = 0
treeProyecto.Height = ScaleHeight
treeProyecto.Width = ScaleWidth
End Sub
Private Sub Form_Unload(Cancel As Integer)
Set frmProyecto = Nothing
End Sub