-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmAgregarEmpleado.Designer.vb
154 lines (149 loc) · 5.61 KB
/
frmAgregarEmpleado.Designer.vb
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
151
152
153
154
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class frmAgregarEmpleado
Inherits System.Windows.Forms.Form
'Form reemplaza a Dispose para limpiar la lista de componentes.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Requerido por el Diseñador de Windows Forms
Private components As System.ComponentModel.IContainer
'NOTA: el Diseñador de Windows Forms necesita el siguiente procedimiento
'Se puede modificar usando el Diseñador de Windows Forms.
'No lo modifique con el editor de código.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.Label1 = New System.Windows.Forms.Label()
Me.Label2 = New System.Windows.Forms.Label()
Me.Label3 = New System.Windows.Forms.Label()
Me.Label4 = New System.Windows.Forms.Label()
Me.txtCodigo = New System.Windows.Forms.TextBox()
Me.txtCategoria = New System.Windows.Forms.TextBox()
Me.txtNombre = New System.Windows.Forms.TextBox()
Me.txtSueldo = New System.Windows.Forms.TextBox()
Me.cmdCargar = New System.Windows.Forms.Button()
Me.GroupBox1 = New System.Windows.Forms.GroupBox()
Me.GroupBox1.SuspendLayout()
Me.SuspendLayout()
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Location = New System.Drawing.Point(6, 34)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(43, 13)
Me.Label1.TabIndex = 0
Me.Label1.Text = "Código:"
'
'Label2
'
Me.Label2.AutoSize = True
Me.Label2.Location = New System.Drawing.Point(6, 71)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(57, 13)
Me.Label2.TabIndex = 1
Me.Label2.Text = "Categoría:"
'
'Label3
'
Me.Label3.AutoSize = True
Me.Label3.Location = New System.Drawing.Point(175, 34)
Me.Label3.Name = "Label3"
Me.Label3.Size = New System.Drawing.Size(47, 13)
Me.Label3.TabIndex = 2
Me.Label3.Text = "Nombre:"
'
'Label4
'
Me.Label4.AutoSize = True
Me.Label4.Location = New System.Drawing.Point(175, 71)
Me.Label4.Name = "Label4"
Me.Label4.Size = New System.Drawing.Size(43, 13)
Me.Label4.TabIndex = 3
Me.Label4.Text = "Sueldo:"
'
'txtCodigo
'
Me.txtCodigo.Location = New System.Drawing.Point(69, 31)
Me.txtCodigo.Name = "txtCodigo"
Me.txtCodigo.Size = New System.Drawing.Size(100, 20)
Me.txtCodigo.TabIndex = 4
'
'txtCategoria
'
Me.txtCategoria.Location = New System.Drawing.Point(69, 68)
Me.txtCategoria.Name = "txtCategoria"
Me.txtCategoria.Size = New System.Drawing.Size(100, 20)
Me.txtCategoria.TabIndex = 5
'
'txtNombre
'
Me.txtNombre.Location = New System.Drawing.Point(229, 31)
Me.txtNombre.Name = "txtNombre"
Me.txtNombre.Size = New System.Drawing.Size(100, 20)
Me.txtNombre.TabIndex = 6
'
'txtSueldo
'
Me.txtSueldo.Location = New System.Drawing.Point(229, 68)
Me.txtSueldo.Name = "txtSueldo"
Me.txtSueldo.Size = New System.Drawing.Size(100, 20)
Me.txtSueldo.TabIndex = 7
'
'cmdCargar
'
Me.cmdCargar.Location = New System.Drawing.Point(309, 134)
Me.cmdCargar.Name = "cmdCargar"
Me.cmdCargar.Size = New System.Drawing.Size(75, 23)
Me.cmdCargar.TabIndex = 8
Me.cmdCargar.Text = "Cargar"
Me.cmdCargar.UseVisualStyleBackColor = True
'
'GroupBox1
'
Me.GroupBox1.Controls.Add(Me.Label1)
Me.GroupBox1.Controls.Add(Me.txtCodigo)
Me.GroupBox1.Controls.Add(Me.txtSueldo)
Me.GroupBox1.Controls.Add(Me.Label2)
Me.GroupBox1.Controls.Add(Me.txtNombre)
Me.GroupBox1.Controls.Add(Me.txtCategoria)
Me.GroupBox1.Controls.Add(Me.Label4)
Me.GroupBox1.Controls.Add(Me.Label3)
Me.GroupBox1.Location = New System.Drawing.Point(26, 28)
Me.GroupBox1.Name = "GroupBox1"
Me.GroupBox1.Size = New System.Drawing.Size(358, 100)
Me.GroupBox1.TabIndex = 9
Me.GroupBox1.TabStop = False
Me.GroupBox1.Text = "Nuevo empleado"
'
'frmAgregarEmpleado
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(405, 172)
Me.Controls.Add(Me.GroupBox1)
Me.Controls.Add(Me.cmdCargar)
Me.Name = "frmAgregarEmpleado"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "Agregar nuevo empleado..."
Me.GroupBox1.ResumeLayout(False)
Me.GroupBox1.PerformLayout()
Me.ResumeLayout(False)
End Sub
Friend WithEvents Label1 As Label
Friend WithEvents Label2 As Label
Friend WithEvents Label3 As Label
Friend WithEvents Label4 As Label
Friend WithEvents txtCodigo As TextBox
Friend WithEvents txtCategoria As TextBox
Friend WithEvents txtNombre As TextBox
Friend WithEvents txtSueldo As TextBox
Friend WithEvents cmdCargar As Button
Friend WithEvents GroupBox1 As GroupBox
End Class