You are on page 1of 15

C:\Users\Hey Villegas\AppData\Local\Temporary Projects\WindowsApplication4\Form1.

vb 1
1 Public Class Form1
2
3 Imports System.Data.OleDb
4 Imports System.IO
5
6
7 Public Class Form1
8
9 Private Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs)
Handles Button1.Click
10
11
12 Dim hab As Integer
13
14 Dim ch As Integer
15
16 Dim cc As Integer
17
18 Dim ccars As Integer
19
20 Dim dd As Integer
21
22 Dim gmd As Integer
23
24 Dim gmaxd As Integer
25
26 Dim gmh As Integer
27
28 Dim diamdot As Integer
29
30 Dim dcomdot As Integer
31
32 hab = TextBox3.Text
33
34
35
36 ch = 150 * hab
37
38 cc = 164.2 * 6
39
40 ccars = 16 * 8
41
42 dd = ch + cc + ccars
43
44 gmd = dd / 86400
45
46 Label16.Text = gmd
47
48 gmaxd = gmd * 1.2
49
50 Label18.Text = gmaxd
51
52 gmh = gmaxd * 1.5
53
54 Label20.Text = gmh
55
56 diamdot = 1.13 * Math.Sqrt(gmaxd)
57
58 dcomdot = diamdot * 1000
59
60 Label7.Text = dd
61
62 'Diseño de Tanque y Cisterna
63
64 Dim capalm As Integer
65
66 capalm = dd * 2
67
68 Label22.Text = capalm
69
70
71 Dim captanq As Integer
72
73 captanq = capalm * (0.25)
C:\Users\Hey Villegas\AppData\Local\Temporary Projects\WindowsApplication4\Form1.vb 2
74
75 Label24.Text = captanq
76
77 Label6.Text = "los datos son estimaciones se debe corroborar una vez
vendidos los departamentos"
78 End Sub
79
80 Private Sub Button2_Click(ByVal sender As Object, ByVal e As EventArgs)
Handles Button2.Click
81
82 Dim C, j, i As Integer
83
84
85 Dim F As Integer
86
87
88 C = InputBox("Cantidad de columnas", "Ingresar datos", "SOLO NUMEROS")
89
90
91 Label10.Text = C 'Cantidad de Columnas
92
93
94 F = InputBox("Cantidad de filas", "Ingresar datos", "SOLO NUMEROS")
95
96
97 Label11.Text = F 'Cantidad de Filas
98
99
100 Dim matriz(F, C) As Integer 'inicializando el modelo bidimensional
101
102
103 Dim maxh(F) As Integer 'inicializando el modelo unidimensional
104
105 'PARA OBTENER EL VALOR MAXIMO DE CADA FILA SE INVIERTE EL CONTEO DE
VARIABLE
106
107 'SERÁ (I,J) PARA QUE EL INDICE PUEDA MOVERSE DE FORMA HORIZONTAL
108
109 'DE ESTA MANERA SE LA VARIABLE (MAXH()) ESTARÁ EN FUNCIÓN DE EL INDICE "I
"
110
111
112
113 For i = 1 To F
114
115 For j = 1 To C
116
117
118 matriz(i, j) = InputBox("Cual es el valor de la variable " & CStr
(i) & "," & CStr(j) & "?")
119
120
121 ' Escribiendo en el Label
122
123 Label12.Text = Label12.Text & matriz(i, j) & " "
124
125
126
127 If maxh(i) < matriz(i, j) Then
128
129
130
131 maxh(i) = matriz(i, j)
132
133
134
135 End If
136
137
138 Next j
139
140 Label12.Text = Label12.Text & vbCrLf ' vbCrLf SALTO DE LINEA
141
142 Label13.Text = Label13.Text & " " & maxh(i) & vbCrLf ' vbCrLf SALTO
C:\Users\Hey Villegas\AppData\Local\Temporary Projects\WindowsApplication4\Form1.vb 3
DE LINEA
143
144 Next i
145 Dim maxv(C) As Integer
146
147 'PARA OBTENER EL VALOR MAXIMO DE CADA COLUMNA SE INVIERTE EL CONTEO DE
VARIABLE
148
149 'DE SER (I,J) A (J,I) PARA QUE EL INDICE PUEDA MOVERSE DE FORMA VERTICAL
150
151 'DE ESTA MANERA SE LA VARIABLE (MAXV()) ESTARÁ EN FUNCIÓN DE EL INDICE "J
"
152
153
154
155 For j = 1 To C
156
157 For i = 1 To F
158
159
160 If maxv(j) < matriz(i, j) Then
161
162
163 maxv(j) = matriz(i, j)
164
165
166 End If
167
168
169
170 Next i
171
172 'vbTab SALTO DE ESPACIO
173
174 Label14.Text = Label14.Text & maxv(j) & " " & vbTab
175
176
177 Next j
178
179
180 End Sub
181
182 Private Sub Button3_Click(ByVal sender As Object, ByVal e As EventArgs)
Handles Button3.Click
183
184 If MsgBox("Estas seguro que quieres Borrar los datos", vbYesNo,
"Información") = MsgBoxResult.Yes Then
185
186
187 'BORRADO DE DATOS Y RESULTADOS
188 Label10.Text = ""
189
190 Label11.Text = ""
191
192 Label12.Text = ""
193
194 Label13.Text = ""
195
196 Label14.Text = ""
197 End If
198 End Sub
199
200
201 Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.
EventArgs) Handles Button4.Click
202 If MsgBox("Estas seguro que quieres Borrar los datos", vbYesNo,
"Información") = MsgBoxResult.Yes Then
203
204
205 'BORRADO DE DATOS Y RESULTADOS
206 Label7.Text = ""
207
208
209 End If
C:\Users\Hey Villegas\AppData\Local\Temporary Projects\WindowsApplication4\Form1.vb 4
210
211
212
213
214 End Sub
215
216 Private Sub Label21_Click(ByVal sender As System.Object, ByVal e As System.
EventArgs) Handles Label21.Click, Label24.Click, Label23.Click
217
218 End Sub
219
220 Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.
EventArgs) Handles Button5.Click
221
222
223 Dim objConn As OleDbConnection
224 Dim oleDA As OleDbDataAdapter
225 Dim ds As DataSet
226 Dim FileName As String
227 FileName = "C:\Users\Hey Villegas\Documents\Actividades.xlsx"
228
229 Try
230 'Create a OLEDB connection for Excel file
231 Dim connectionString As String = "Provider=Microsoft.ACE.Oledb.12.0;
Data Source=" & FileName & ";Extended Properties=""Excel 12.0;HDR=YES;IMEX=1"""
232 objConn = New OleDbConnection(connectionString)
233 oleDA = New OleDbDataAdapter("select * from [hoja1$]", objConn)
234 ds = New DataSet()
235 'Fill the Data Set
236 oleDA.Fill(ds)
237 'Set DataSource of DataGridView
238 DataGridView1.DataSource = ds.Tables(0)
239 ds.Dispose()
240 oleDA.Dispose()
241 objConn.Dispose()
242 Catch ex As Exception
243 MessageBox.Show(ex.Message)
244 End Try
245
246 End Sub
247
248
249 Private Sub Button6_Click(ByVal sender As System.Object, ByVal e As System.
EventArgs) Handles Button6.Click
250 If RadioButton2.Checked Then
251 AxWindowsMediaPlayer1.URL = "C:\Users\Hey Villegas\Downloads\Colando
una losa (techo) desde cero.mp4"
252 AxWindowsMediaPlayer1.Ctlcontrols.play()
253
254 ElseIf RadioButton1.Checked Then
255 MsgBox("No se encontró Circuito o Puntos de Visualización",
MsgBoxStyle.Critical, "Error Crack")
256
257 ElseIf RadioButton1.Checked = False And RadioButton2.Checked = False Then
258 MsgBox("Elije una opción de Visualización", MsgBoxStyle.Critical,
"Error Crack")
259 End If
260 End Sub
261
262 End Sub
263
264
265 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.
EventArgs) Handles MyBase.Load
266
267 End Sub
268
269 '----------------------------------------------------------------------------
--
270 ' <auto-generated>
271 ' This code was generated by a tool.
272 ' Runtime Version:4.0.30319.42000
273 '
274 ' Changes to this file may cause incorrect behavior and will be lost if
C:\Users\Hey Villegas\AppData\Local\Temporary Projects\WindowsApplication4\Form1.vb 5
275 ' the code is regenerated.
276 ' </auto-generated>
277 '----------------------------------------------------------------------------
--
278
279 Option Strict On
280 Option Explicit On
281
282
283 Namespace My
284
285 <Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
286 Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.
VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0"),
_
287 Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.
ComponentModel.EditorBrowsableState.Advanced)> _
288 Partial Friend NotInheritable Class MySettings
289 Inherits Global.System.Configuration.ApplicationSettingsBase
290
291 Private Shared defaultInstance As MySettings = CType(Global.System.
Configuration.ApplicationSettingsBase.Synchronized(New MySettings), MySettings)
292
293 #Region "My.Settings Auto-Save Functionality"
294 #If _MyType = "WindowsForms" Then
295 Private Shared addedHandler As Boolean
296
297 Private Shared addedHandlerLockObject As New Object
298
299 <Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.
System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.
EditorBrowsableState.Advanced)> _
300 Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.
Object, ByVal e As Global.System.EventArgs)
301 If My.Application.SaveMySettingsOnExit Then
302 My.Settings.Save()
303 End If
304 End Sub
305 #End If
306 #End Region
307
308 Public Shared ReadOnly Property [Default]() As MySettings
309 Get
310
311 #If _MyType = "WindowsForms" Then
312 If Not addedHandler Then
313 SyncLock addedHandlerLockObject
314 If Not addedHandler Then
315 AddHandler My.Application.Shutdown, AddressOf
AutoSaveSettings
316 addedHandler = True
317 End If
318 End SyncLock
319 End If
320 #End If
321 Return defaultInstance
322 End Get
323 End Property
324 End Class
325 End Namespace
326
327 Namespace My
328
329 <Global.Microsoft.VisualBasic.HideModuleNameAttribute(), _
330 Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
331 Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute()> _
332 Friend Module MySettingsProperty
333
334 <Global.System.ComponentModel.Design.HelpKeywordAttribute("My.
Settings")> _
335 Friend ReadOnly Property Settings() As Global.WindowsApplication1.My.
MySettings
336 Get
337 Return Global.WindowsApplication1.My.MySettings.Default
C:\Users\Hey Villegas\AppData\Local\Temporary Projects\WindowsApplication4\Form1.vb 6
338 End Get
339 End Property
340 End Module
341 End Namespace
342 '----------------------------------------------------------------------------
--
343 ' <auto-generated>
344 ' This code was generated by a tool.
345 ' Runtime Version:4.0.30319.42000
346 '
347 ' Changes to this file may cause incorrect behavior and will be lost if
348 ' the code is regenerated.
349 ' </auto-generated>
350 '----------------------------------------------------------------------------
--
351
352 Option Strict On
353 Option Explicit On
354
355
356 Namespace My
357
358 'NOTE: This file is auto-generated; do not modify it directly. To make
changes,
359 ' or if you encounter build errors in this file, go to the Project
Designer
360 ' (go to Project Properties or double-click the My Project node in
361 ' Solution Explorer), and make changes on the Application tab.
362 '
363 Partial Friend Class MyApplication
364
365 <Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
366 Public Sub New()
367 MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.
AuthenticationMode.Windows)
368 Me.IsSingleInstance = False
369 Me.EnableVisualStyles = True
370 Me.SaveMySettingsOnExit = True
371 Me.ShutdownStyle = Global.Microsoft.VisualBasic.
ApplicationServices.ShutdownMode.AfterMainFormCloses
372 End Sub
373
374 <Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
375 Protected Overrides Sub OnCreateMainForm()
376 Me.MainForm = Global.WindowsApplication1.Form1
377 End Sub
378 End Class
379 End Namespace
380 '----------------------------------------------------------------------------
--
381 ' <auto-generated>
382 ' Este código fue generado por una herramienta.
383 ' Versión de runtime:4.0.30319.42000
384 '
385 ' Los cambios en este archivo podrían causar un comportamiento incorrecto
y se perderán si
386 ' se vuelve a generar el código.
387 ' </auto-generated>
388 '----------------------------------------------------------------------------
--
389
390 Option Strict On
391 Option Explicit On
392
393 Imports System
394
395 Namespace My.Resources
396
397 'StronglyTypedResourceBuilder generó automáticamente esta clase
398 'a través de una herramienta como ResGen o Visual Studio.
399 'Para agregar o quitar un miembro, edite el archivo .ResX y, a
continuación, vuelva a ejecutar ResGen
400 'con la opción /str o recompile su proyecto de VS.
401 '''<summary>
C:\Users\Hey Villegas\AppData\Local\Temporary Projects\WindowsApplication4\Form1.vb 7
402 ''' Clase de recurso fuertemente tipado, para buscar cadenas traducidas,
etc.
403 '''</summary>
404 <Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.
Tools.StronglyTypedResourceBuilder", "4.0.0.0"), _
405 Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
406 Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
407 Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
408 Friend Module Resources
409
410 Private resourceMan As Global.System.Resources.ResourceManager
411
412 Private resourceCulture As Global.System.Globalization.CultureInfo
413
414 '''<summary>
415 ''' Devuelve la instancia de ResourceManager almacenada en caché
utilizada por esta clase.
416 '''</summary>
417 <Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.
ComponentModel.EditorBrowsableState.Advanced)> _
418 Friend ReadOnly Property ResourceManager() As Global.System.Resources
.ResourceManager
419 Get
420 If Object.ReferenceEquals(resourceMan, Nothing) Then
421 Dim temp As Global.System.Resources.ResourceManager = New
Global.System.Resources.ResourceManager("WindowsApplication1.Resources", GetType
(Resources).Assembly)
422 resourceMan = temp
423 End If
424 Return resourceMan
425 End Get
426 End Property
427
428 '''<summary>
429 ''' Reemplaza la propiedad CurrentUICulture del subproceso actual
para todas las
430 ''' búsquedas de recursos mediante esta clase de recurso fuertemente
tipado.
431 '''</summary>
432 <Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.
ComponentModel.EditorBrowsableState.Advanced)> _
433 Friend Property Culture() As Global.System.Globalization.CultureInfo
434 Get
435 Return resourceCulture
436 End Get
437 Set(ByVal value As Global.System.Globalization.CultureInfo)
438 resourceCulture = value
439 End Set
440 End Property
441
442 '''<summary>
443 ''' Busca un recurso adaptado de tipo System.Drawing.Bitmap.
444 '''</summary>
445 Friend ReadOnly Property
html_color_codes_color_tutorials_hero_00e10b1f() As System.Drawing.Bitmap
446 Get
447 Dim obj As Object = ResourceManager.GetObject("html-color-
codes-color-tutorials-hero-00e10b1f", resourceCulture)
448 Return CType(obj, System.Drawing.Bitmap)
449 End Get
450 End Property
451
452 '''<summary>
453 ''' Busca un recurso adaptado de tipo System.Drawing.Bitmap.
454 '''</summary>
455 Friend ReadOnly Property xD() As System.Drawing.Bitmap
456 Get
457 Dim obj As Object = ResourceManager.GetObject("xD",
resourceCulture)
458 Return CType(obj, System.Drawing.Bitmap)
459 End Get
460 End Property
461 End Module
462 End Namespace
C:\Users\Hey Villegas\AppData\Local\Temporary Projects\WindowsApplication4\Form1.vb 8
463 <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
464 Partial Class Form1
465 Inherits System.Windows.Forms.Form
466
467 'Form reemplaza a Dispose para limpiar la lista de componentes.
468 <System.Diagnostics.DebuggerNonUserCode()> _
469 Protected Overrides Sub Dispose(ByVal disposing As Boolean)
470 Try
471 If disposing AndAlso components IsNot Nothing Then
472 components.Dispose()
473 End If
474 Finally
475 MyBase.Dispose(disposing)
476 End Try
477 End Sub
478
479 'Requerido por el Diseñador de Windows Forms
480 Private components As System.ComponentModel.IContainer
481
482 'NOTA: el Diseñador de Windows Forms necesita el siguiente procedimiento
483 'Se puede modificar usando el Diseñador de Windows Forms.
484 'No lo modifique con el editor de código.
485 <System.Diagnostics.DebuggerStepThrough()> _
486 Private Sub InitializeComponent()
487 Me.TabControl1 = New System.Windows.Forms.TabControl()
488 Me.TabPage1 = New System.Windows.Forms.TabPage()
489 Me.TabPage2 = New System.Windows.Forms.TabPage()
490 Me.Button4 = New System.Windows.Forms.Button()
491 Me.Button1 = New System.Windows.Forms.Button()
492 Me.TextBox4 = New System.Windows.Forms.TextBox()
493 Me.TextBox3 = New System.Windows.Forms.TextBox()
494 Me.TextBox2 = New System.Windows.Forms.TextBox()
495 Me.TextBox1 = New System.Windows.Forms.TextBox()
496 Me.Label4 = New System.Windows.Forms.Label()
497 Me.Label3 = New System.Windows.Forms.Label()
498 Me.Label2 = New System.Windows.Forms.Label()
499 Me.Label1 = New System.Windows.Forms.Label()
500 Me.TabPage3 = New System.Windows.Forms.TabPage()
501 Me.Label20 = New System.Windows.Forms.Label()
502 Me.Label19 = New System.Windows.Forms.Label()
503 Me.Label18 = New System.Windows.Forms.Label()
504 Me.Label17 = New System.Windows.Forms.Label()
505 Me.Label16 = New System.Windows.Forms.Label()
506 Me.Label15 = New System.Windows.Forms.Label()
507 Me.Label7 = New System.Windows.Forms.Label()
508 Me.Label6 = New System.Windows.Forms.Label()
509 Me.Label5 = New System.Windows.Forms.Label()
510 Me.TabPage4 = New System.Windows.Forms.TabPage()
511 Me.TabPage5 = New System.Windows.Forms.TabPage()
512 Me.TabPage6 = New System.Windows.Forms.TabPage()
513 Me.Button3 = New System.Windows.Forms.Button()
514 Me.Button2 = New System.Windows.Forms.Button()
515 Me.Label14 = New System.Windows.Forms.Label()
516 Me.Label13 = New System.Windows.Forms.Label()
517 Me.Label12 = New System.Windows.Forms.Label()
518 Me.Label11 = New System.Windows.Forms.Label()
519 Me.Label10 = New System.Windows.Forms.Label()
520 Me.Label9 = New System.Windows.Forms.Label()
521 Me.Label8 = New System.Windows.Forms.Label()
522 Me.TabControl1.SuspendLayout()
523 Me.TabPage2.SuspendLayout()
524 Me.TabPage3.SuspendLayout()
525 Me.TabPage6.SuspendLayout()
526 Me.SuspendLayout()
527 '
528 'TabControl1
529 '
530 Me.TabControl1.Controls.Add(Me.TabPage1)
531 Me.TabControl1.Controls.Add(Me.TabPage2)
532 Me.TabControl1.Controls.Add(Me.TabPage3)
533 Me.TabControl1.Controls.Add(Me.TabPage4)
534 Me.TabControl1.Controls.Add(Me.TabPage5)
535 Me.TabControl1.Controls.Add(Me.TabPage6)
536 Me.TabControl1.Location = New System.Drawing.Point(16, 14)
C:\Users\Hey Villegas\AppData\Local\Temporary Projects\WindowsApplication4\Form1.vb 9
537 Me.TabControl1.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
538 Me.TabControl1.Name = "TabControl1"
539 Me.TabControl1.SelectedIndex = 0
540 Me.TabControl1.Size = New System.Drawing.Size(990, 488)
541 Me.TabControl1.TabIndex = 0
542 '
543 'TabPage1
544 '
545 Me.TabPage1.Location = New System.Drawing.Point(4, 24)
546 Me.TabPage1.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
547 Me.TabPage1.Name = "TabPage1"
548 Me.TabPage1.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4)
549 Me.TabPage1.Size = New System.Drawing.Size(982, 460)
550 Me.TabPage1.TabIndex = 0
551 Me.TabPage1.Text = "INICIO"
552 Me.TabPage1.UseVisualStyleBackColor = True
553 '
554 'TabPage2
555 '
556 Me.TabPage2.BackColor = System.Drawing.Color.Transparent
557 Me.TabPage2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.
Stretch
558 Me.TabPage2.Controls.Add(Me.Button4)
559 Me.TabPage2.Controls.Add(Me.Button1)
560 Me.TabPage2.Controls.Add(Me.TextBox4)
561 Me.TabPage2.Controls.Add(Me.TextBox3)
562 Me.TabPage2.Controls.Add(Me.TextBox2)
563 Me.TabPage2.Controls.Add(Me.TextBox1)
564 Me.TabPage2.Controls.Add(Me.Label4)
565 Me.TabPage2.Controls.Add(Me.Label3)
566 Me.TabPage2.Controls.Add(Me.Label2)
567 Me.TabPage2.Controls.Add(Me.Label1)
568 Me.TabPage2.Location = New System.Drawing.Point(4, 24)
569 Me.TabPage2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
570 Me.TabPage2.Name = "TabPage2"
571 Me.TabPage2.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4)
572 Me.TabPage2.Size = New System.Drawing.Size(982, 460)
573 Me.TabPage2.TabIndex = 1
574 Me.TabPage2.Text = "Introducción de Datos"
575 '
576 'Button4
577 '
578 Me.Button4.Location = New System.Drawing.Point(497, 204)
579 Me.Button4.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
580 Me.Button4.Name = "Button4"
581 Me.Button4.Size = New System.Drawing.Size(175, 56)
582 Me.Button4.TabIndex = 22
583 Me.Button4.Text = "Borrar datos de IA"
584 Me.Button4.UseVisualStyleBackColor = True
585 '
586 'Button1
587 '
588 Me.Button1.ForeColor = System.Drawing.Color.Black
589 Me.Button1.Location = New System.Drawing.Point(496, 134)
590 Me.Button1.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
591 Me.Button1.Name = "Button1"
592 Me.Button1.Size = New System.Drawing.Size(177, 55)
593 Me.Button1.TabIndex = 21
594 Me.Button1.Text = "REALIZAR PROYECCON CON IA"
595 Me.Button1.UseVisualStyleBackColor = True
596 '
597 'TextBox4
598 '
599 Me.TextBox4.Location = New System.Drawing.Point(327, 239)
600 Me.TextBox4.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
601 Me.TextBox4.Name = "TextBox4"
602 Me.TextBox4.Size = New System.Drawing.Size(109, 21)
603 Me.TextBox4.TabIndex = 18
604 '
605 'TextBox3
606 '
607 Me.TextBox3.Location = New System.Drawing.Point(327, 199)
608 Me.TextBox3.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
609 Me.TextBox3.Name = "TextBox3"
C:\Users\Hey Villegas\AppData\Local\Temporary Projects\WindowsApplication4\Form1.vb 10
610 Me.TextBox3.Size = New System.Drawing.Size(109, 21)
611 Me.TextBox3.TabIndex = 19
612 '
613 'TextBox2
614 '
615 Me.TextBox2.Location = New System.Drawing.Point(327, 166)
616 Me.TextBox2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
617 Me.TextBox2.Name = "TextBox2"
618 Me.TextBox2.Size = New System.Drawing.Size(109, 21)
619 Me.TextBox2.TabIndex = 20
620 '
621 'TextBox1
622 '
623 Me.TextBox1.Location = New System.Drawing.Point(327, 134)
624 Me.TextBox1.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
625 Me.TextBox1.Name = "TextBox1"
626 Me.TextBox1.Size = New System.Drawing.Size(109, 21)
627 Me.TextBox1.TabIndex = 17
628 '
629 'Label4
630 '
631 Me.Label4.Font = New System.Drawing.Font("Gotham", 8.249999!, System.
Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
632 Me.Label4.ForeColor = System.Drawing.Color.Black
633 Me.Label4.Location = New System.Drawing.Point(120, 232)
634 Me.Label4.Name = "Label4"
635 Me.Label4.Size = New System.Drawing.Size(170, 38)
636 Me.Label4.TabIndex = 16
637 Me.Label4.Text = "TIEMPO ESTIMADO DE TERMINACIÓN"
638 Me.Label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
639 '
640 'Label3
641 '
642 Me.Label3.AutoSize = True
643 Me.Label3.Font = New System.Drawing.Font("Gotham", 8.249999!, System.
Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
644 Me.Label3.ForeColor = System.Drawing.Color.Black
645 Me.Label3.Location = New System.Drawing.Point(120, 202)
646 Me.Label3.Name = "Label3"
647 Me.Label3.Size = New System.Drawing.Size(150, 12)
648 Me.Label3.TabIndex = 13
649 Me.Label3.Text = "HABITANTES ESTIMADOS"
650 '
651 'Label2
652 '
653 Me.Label2.AutoSize = True
654 Me.Label2.Font = New System.Drawing.Font("Gotham", 8.249999!, System.
Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
655 Me.Label2.ForeColor = System.Drawing.Color.Black
656 Me.Label2.Location = New System.Drawing.Point(120, 171)
657 Me.Label2.Name = "Label2"
658 Me.Label2.Size = New System.Drawing.Size(142, 12)
659 Me.Label2.TabIndex = 14
660 Me.Label2.Text = "UBICACIÓN DEL PREDIO"
661 '
662 'Label1
663 '
664 Me.Label1.AutoSize = True
665 Me.Label1.Font = New System.Drawing.Font("Gotham", 8.249999!, System.
Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
666 Me.Label1.ForeColor = System.Drawing.Color.Black
667 Me.Label1.Location = New System.Drawing.Point(120, 139)
668 Me.Label1.Name = "Label1"
669 Me.Label1.Size = New System.Drawing.Size(138, 12)
670 Me.Label1.TabIndex = 15
671 Me.Label1.Text = "CANTIDAD DE NIVELES"
672 '
673 'TabPage3
674 '
675 Me.TabPage3.Controls.Add(Me.Label20)
676 Me.TabPage3.Controls.Add(Me.Label19)
677 Me.TabPage3.Controls.Add(Me.Label18)
678 Me.TabPage3.Controls.Add(Me.Label17)
679 Me.TabPage3.Controls.Add(Me.Label16)
C:\Users\Hey Villegas\AppData\Local\Temporary Projects\WindowsApplication4\Form1.vb 11
680 Me.TabPage3.Controls.Add(Me.Label15)
681 Me.TabPage3.Controls.Add(Me.Label7)
682 Me.TabPage3.Controls.Add(Me.Label6)
683 Me.TabPage3.Controls.Add(Me.Label5)
684 Me.TabPage3.Location = New System.Drawing.Point(4, 24)
685 Me.TabPage3.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
686 Me.TabPage3.Name = "TabPage3"
687 Me.TabPage3.Size = New System.Drawing.Size(982, 460)
688 Me.TabPage3.TabIndex = 2
689 Me.TabPage3.Text = "Dotación de Agua"
690 Me.TabPage3.UseVisualStyleBackColor = True
691 '
692 'Label20
693 '
694 Me.Label20.AutoSize = True
695 Me.Label20.Location = New System.Drawing.Point(227, 252)
696 Me.Label20.Name = "Label20"
697 Me.Label20.Size = New System.Drawing.Size(0, 15)
698 Me.Label20.TabIndex = 3
699 '
700 'Label19
701 '
702 Me.Label19.AutoSize = True
703 Me.Label19.Location = New System.Drawing.Point(49, 252)
704 Me.Label19.Name = "Label19"
705 Me.Label19.Size = New System.Drawing.Size(148, 15)
706 Me.Label19.TabIndex = 3
707 Me.Label19.Text = "Gasto Maximo Horario"
708 '
709 'Label18
710 '
711 Me.Label18.AutoSize = True
712 Me.Label18.Location = New System.Drawing.Point(227, 200)
713 Me.Label18.Name = "Label18"
714 Me.Label18.Size = New System.Drawing.Size(0, 15)
715 Me.Label18.TabIndex = 3
716 '
717 'Label17
718 '
719 Me.Label17.AutoSize = True
720 Me.Label17.Location = New System.Drawing.Point(49, 200)
721 Me.Label17.Name = "Label17"
722 Me.Label17.Size = New System.Drawing.Size(128, 15)
723 Me.Label17.TabIndex = 3
724 Me.Label17.Text = "Gasto Medio Diario"
725 '
726 'Label16
727 '
728 Me.Label16.AutoSize = True
729 Me.Label16.Location = New System.Drawing.Point(227, 151)
730 Me.Label16.Name = "Label16"
731 Me.Label16.Size = New System.Drawing.Size(0, 15)
732 Me.Label16.TabIndex = 3
733 '
734 'Label15
735 '
736 Me.Label15.AutoSize = True
737 Me.Label15.Location = New System.Drawing.Point(49, 151)
738 Me.Label15.Name = "Label15"
739 Me.Label15.Size = New System.Drawing.Size(105, 15)
740 Me.Label15.TabIndex = 3
741 Me.Label15.Text = "Dotación Diaria"
742 '
743 'Label7
744 '
745 Me.Label7.AutoSize = True
746 Me.Label7.Location = New System.Drawing.Point(208, 40)
747 Me.Label7.Name = "Label7"
748 Me.Label7.Size = New System.Drawing.Size(0, 15)
749 Me.Label7.TabIndex = 2
750 '
751 'Label6
752 '
753 Me.Label6.AutoSize = True
C:\Users\Hey Villegas\AppData\Local\Temporary Projects\WindowsApplication4\Form1.vb 12
754 Me.Label6.Location = New System.Drawing.Point(49, 105)
755 Me.Label6.Name = "Label6"
756 Me.Label6.Size = New System.Drawing.Size(0, 15)
757 Me.Label6.TabIndex = 1
758 '
759 'Label5
760 '
761 Me.Label5.AutoSize = True
762 Me.Label5.Location = New System.Drawing.Point(49, 40)
763 Me.Label5.Name = "Label5"
764 Me.Label5.Size = New System.Drawing.Size(112, 15)
765 Me.Label5.TabIndex = 0
766 Me.Label5.Text = "Gasto Calculado"
767 '
768 'TabPage4
769 '
770 Me.TabPage4.Location = New System.Drawing.Point(4, 21)
771 Me.TabPage4.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
772 Me.TabPage4.Name = "TabPage4"
773 Me.TabPage4.Size = New System.Drawing.Size(982, 463)
774 Me.TabPage4.TabIndex = 3
775 Me.TabPage4.Text = "Analisis de Procesos Constructivos"
776 Me.TabPage4.UseVisualStyleBackColor = True
777 '
778 'TabPage5
779 '
780 Me.TabPage5.Location = New System.Drawing.Point(4, 21)
781 Me.TabPage5.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
782 Me.TabPage5.Name = "TabPage5"
783 Me.TabPage5.Size = New System.Drawing.Size(982, 463)
784 Me.TabPage5.TabIndex = 4
785 Me.TabPage5.Text = "Actividades criticas"
786 Me.TabPage5.UseVisualStyleBackColor = True
787 '
788 'TabPage6
789 '
790 Me.TabPage6.Controls.Add(Me.Button3)
791 Me.TabPage6.Controls.Add(Me.Button2)
792 Me.TabPage6.Controls.Add(Me.Label14)
793 Me.TabPage6.Controls.Add(Me.Label13)
794 Me.TabPage6.Controls.Add(Me.Label12)
795 Me.TabPage6.Controls.Add(Me.Label11)
796 Me.TabPage6.Controls.Add(Me.Label10)
797 Me.TabPage6.Controls.Add(Me.Label9)
798 Me.TabPage6.Controls.Add(Me.Label8)
799 Me.TabPage6.Location = New System.Drawing.Point(4, 21)
800 Me.TabPage6.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
801 Me.TabPage6.Name = "TabPage6"
802 Me.TabPage6.Size = New System.Drawing.Size(982, 463)
803 Me.TabPage6.TabIndex = 5
804 Me.TabPage6.Text = "Utilidades Informaticas"
805 Me.TabPage6.UseVisualStyleBackColor = True
806 '
807 'Button3
808 '
809 Me.Button3.Location = New System.Drawing.Point(570, 129)
810 Me.Button3.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
811 Me.Button3.Name = "Button3"
812 Me.Button3.Size = New System.Drawing.Size(179, 52)
813 Me.Button3.TabIndex = 11
814 Me.Button3.Text = "Button3"
815 Me.Button3.UseVisualStyleBackColor = True
816 '
817 'Button2
818 '
819 Me.Button2.Location = New System.Drawing.Point(570, 44)
820 Me.Button2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
821 Me.Button2.Name = "Button2"
822 Me.Button2.Size = New System.Drawing.Size(182, 50)
823 Me.Button2.TabIndex = 10
824 Me.Button2.Text = "Introducir valores de matriz"
825 Me.Button2.UseVisualStyleBackColor = True
826 '
827 'Label14
C:\Users\Hey Villegas\AppData\Local\Temporary Projects\WindowsApplication4\Form1.vb 13
828 '
829 Me.Label14.AutoSize = True
830 Me.Label14.Location = New System.Drawing.Point(33, 358)
831 Me.Label14.Name = "Label14"
832 Me.Label14.Size = New System.Drawing.Size(0, 15)
833 Me.Label14.TabIndex = 8
834 '
835 'Label13
836 '
837 Me.Label13.AutoSize = True
838 Me.Label13.Location = New System.Drawing.Point(286, 180)
839 Me.Label13.Name = "Label13"
840 Me.Label13.Size = New System.Drawing.Size(0, 15)
841 Me.Label13.TabIndex = 9
842 '
843 'Label12
844 '
845 Me.Label12.AutoSize = True
846 Me.Label12.Location = New System.Drawing.Point(33, 180)
847 Me.Label12.Name = "Label12"
848 Me.Label12.Size = New System.Drawing.Size(0, 15)
849 Me.Label12.TabIndex = 7
850 '
851 'Label11
852 '
853 Me.Label11.AutoSize = True
854 Me.Label11.Location = New System.Drawing.Point(151, 79)
855 Me.Label11.Name = "Label11"
856 Me.Label11.Size = New System.Drawing.Size(0, 15)
857 Me.Label11.TabIndex = 3
858 '
859 'Label10
860 '
861 Me.Label10.AutoSize = True
862 Me.Label10.Location = New System.Drawing.Point(151, 49)
863 Me.Label10.Name = "Label10"
864 Me.Label10.Size = New System.Drawing.Size(0, 15)
865 Me.Label10.TabIndex = 6
866 '
867 'Label9
868 '
869 Me.Label9.AutoSize = True
870 Me.Label9.Location = New System.Drawing.Point(33, 79)
871 Me.Label9.Name = "Label9"
872 Me.Label9.Size = New System.Drawing.Size(36, 15)
873 Me.Label9.TabIndex = 5
874 Me.Label9.Text = "Filas"
875 '
876 'Label8
877 '
878 Me.Label8.AutoSize = True
879 Me.Label8.Location = New System.Drawing.Point(33, 49)
880 Me.Label8.Name = "Label8"
881 Me.Label8.Size = New System.Drawing.Size(70, 15)
882 Me.Label8.TabIndex = 4
883 Me.Label8.Text = "Columnas"
884 '
885 'Form1
886 '
887 Me.AutoScaleDimensions = New System.Drawing.SizeF(8.0!, 15.0!)
888 Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
889 Me.ClientSize = New System.Drawing.Size(1022, 515)
890 Me.Controls.Add(Me.TabControl1)
891 Me.Font = New System.Drawing.Font("Gotham", 9.749999!, System.Drawing
.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
892 Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
893 Me.Name = "Form1"
894 Me.Text = "Form1"
895 Me.TabControl1.ResumeLayout(False)
896 Me.TabPage2.ResumeLayout(False)
897 Me.TabPage2.PerformLayout()
898 Me.TabPage3.ResumeLayout(False)
899 Me.TabPage3.PerformLayout()
900 Me.TabPage6.ResumeLayout(False)
C:\Users\Hey Villegas\AppData\Local\Temporary Projects\WindowsApplication4\Form1.vb 14
901 Me.TabPage6.PerformLayout()
902 Me.ResumeLayout(False)
903
904 End Sub
905 Friend WithEvents TabControl1 As System.Windows.Forms.TabControl
906
907
908 Friend WithEvents TabPage1 As System.Windows.Forms.TabPage
909
910
911 Friend WithEvents TabPage2 As System.Windows.Forms.TabPage
912
913
914 Friend WithEvents Button1 As System.Windows.Forms.Button
915
916
917 Friend WithEvents TextBox4 As System.Windows.Forms.TextBox
918
919
920 Friend WithEvents TextBox3 As System.Windows.Forms.TextBox
921
922
923 Friend WithEvents TextBox2 As System.Windows.Forms.TextBox
924
925
926 Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
927
928
929 Friend WithEvents Label4 As System.Windows.Forms.Label
930
931
932 Friend WithEvents Label3 As System.Windows.Forms.Label
933
934
935 Friend WithEvents Label2 As System.Windows.Forms.Label
936
937
938 Friend WithEvents Label1 As System.Windows.Forms.Label
939
940
941 Friend WithEvents TabPage3 As System.Windows.Forms.TabPage
942
943
944 Friend WithEvents TabPage4 As System.Windows.Forms.TabPage
945
946
947 Friend WithEvents TabPage5 As System.Windows.Forms.TabPage
948
949
950 Friend WithEvents TabPage6 As System.Windows.Forms.TabPage
951
952
953 Friend WithEvents Button3 As System.Windows.Forms.Button
954
955
956 Friend WithEvents Button2 As System.Windows.Forms.Button
957
958
959 Friend WithEvents Label14 As System.Windows.Forms.Label
960
961
962 Friend WithEvents Label13 As System.Windows.Forms.Label
963
964
965 Friend WithEvents Label12 As System.Windows.Forms.Label
966
967
968 Friend WithEvents Label11 As System.Windows.Forms.Label
969
970
971 Friend WithEvents Label10 As System.Windows.Forms.Label
972
973
974 Friend WithEvents Label9 As System.Windows.Forms.Label
C:\Users\Hey Villegas\AppData\Local\Temporary Projects\WindowsApplication4\Form1.vb 15
975
976
977 Friend WithEvents Label8 As System.Windows.Forms.Label
978
979
980 Friend WithEvents Label7 As System.Windows.Forms.Label
981
982
983 Friend WithEvents Label6 As System.Windows.Forms.Label
984
985
986 Friend WithEvents Label5 As System.Windows.Forms.Label
987
988
989 Friend WithEvents Button4 As System.Windows.Forms.Button
990
991
992 Friend WithEvents Label20 As System.Windows.Forms.Label
993
994
995 Friend WithEvents Label19 As System.Windows.Forms.Label
996
997
998 Friend WithEvents Label18 As System.Windows.Forms.Label
999
1000
1001 Friend WithEvents Label17 As System.Windows.Forms.Label
1002
1003
1004 Friend WithEvents Label16 As System.Windows.Forms.Label
1005
1006
1007 Friend WithEvents Label15 As System.Windows.Forms.Label
1008
1009 End Class
1010
1011 End Class

You might also like