-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTITLEBAR.FRM
150 lines (133 loc) · 3.98 KB
/
TITLEBAR.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
144
145
146
147
148
149
150
VERSION 5.00
Begin VB.Form frmAcercaDe
AutoRedraw = -1 'True
BorderStyle = 3 'Fixed Dialog
Caption = "Acerca de QueryIt !"
ClientHeight = 6120
ClientLeft = 1560
ClientTop = 4065
ClientWidth = 8610
Icon = "Titlebar.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 408
ScaleMode = 3 'Pixel
ScaleWidth = 574
ShowInTaskbar = 0 'False
Begin VB.CommandButton cmdAceptar
Caption = "&Aceptar"
Default = -1 'True
Height = 405
Left = 3960
TabIndex = 0
Top = 5610
Width = 1245
End
Begin VB.Label Label3
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Creado por Luis ""JEDI"" Núñez"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H8000000E&
Height = 240
Left = 870
TabIndex = 3
Top = 1110
Visible = 0 'False
Width = 3105
End
Begin VB.Label Label2
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Query It !"
BeginProperty Font
Name = "MS Sans Serif"
Size = 24
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 555
Left = 180
TabIndex = 2
Top = 90
Width = 1950
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Query It !"
BeginProperty Font
Name = "MS Sans Serif"
Size = 24
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00808080&
Height = 555
Left = 150
TabIndex = 1
Top = 60
Width = 1950
End
Begin VB.Image Image1
Height = 6480
Left = 0
Picture = "Titlebar.frx":030A
Top = 0
Width = 8640
End
Begin VB.Menu mnufile
Caption = "&File"
Visible = 0 'False
End
Begin VB.Menu mnuedit
Caption = "&Edit"
Visible = 0 'False
End
Begin VB.Menu mnuview
Caption = "&View"
Visible = 0 'False
End
Begin VB.Menu mnuhelp
Caption = "&Help"
Visible = 0 'False
End
End
Attribute VB_Name = "frmAcercaDe"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdAceptar_Click()
Me.Hide
DoEvents
Unload Me
End Sub
Private Sub Form_Load()
CenterWindow hwnd
DoEvents
End Sub
Private Sub Form_Unload(Cancel As Integer)
If Not gbInicio Then
Main.Show
gbInicio = True
End If
Set frmAcercaDe = Nothing
End Sub