Você está na página 1de 7

GRAFICA DE GANTT

FEBRERO ACTIVIDAD Descripcin del entorno FECHA 13-17


20-24

27-2

5-9

MARZO 12-16 19-23

26-30

2-6

9-13

ABRIL 16-20

23-28

30-4

7-11

MAYO 14-18 21-25

28

Identificacin del problema Identificacin de los problemas actuales Presentacin posible solucin Validacin de soluciones
Ventajas y desventajas de soluciones Cuadro comparativo, costos y tiempos Recomendacin Descripcin del equipo de proyecto Elaboracin, planificacin del proyecto Objetivo general y especifico del S. propuesto Identificacin de usuario Diagrama flujo de datos del sistema actual Diccionario de datos del sistema actual Recopilacin, reportes del S actual Elaboracin, procedimientos propuestos Diagrama de flujo de datos del S propuesto Diccionario de datos del sistema propuesto Diagrama entidad relacin Diagrama estructurado de datos Carta estructurada Diagrama de accin Diseo interfaces

Seleccin plataforma de desarrollo Cdigo fuente y cdigo objeto Creacin e base de datos

Fecha propuesta

Fecha real

GRAFICA DE GANTT

Botn salir
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles menu1.Click Me.Close() End Sub

Botn men acceso


Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Me.Hide() usuarios.Show() End Sub End Class

Botn regresar.
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Me.Close() agua_viva.Show() End Sub

Botn ingresa
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click If TextBox1.Text = My.Settings.usuario And TextBox2.Text = My.Settings.contrasea Then MsgBox("Bienvenida Irma Cazares") Me.Hide() sistema.Show()

GRAFICA DE GANTT

Else MsgBox("el usuario o contrasea es incorrecto porfavor vuelve a intentarlo") Return End If

Botn altas
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Me.Hide() altas_ingresos.Show() End Sub

Botn bajas
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click If ((MsgBox("... Desea Eliminar Este ingreso ? " + CStr(TextBox1.Text), MsgBoxStyle.OkCancel, "Mensaje")) = 1) Then Dim strSQL As String = "DELETE FROM ingresos WHERE Id_ingreso = " & CInt(TextBox1.Text) Dim dataAdapter As New OleDb.OleDbDataAdapter(strSQL, cn) dataAdapter.Fill(dt) Refrescar() Actualiza() dataAdapter.Dispose() Else MsgBox("No se ha seleccionado registro a eliminar") End If End Sub

Botn consultas

GRAFICA DE GANTT
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click Me.Hide() consultas_ingresos.Show() End Sub

Botn modificaciones
Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click Me.Hide() ModificacionesIngresos.Show() End Sub

Regresar al men
Private Sub Button7_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button7.Click Me.Close() sistema.Show() End Sub

Anterior
Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click cn.Open() If (fila > 0 And fila <= dt.Rows.Count - 1) Then fila = fila - 1 Actualiza() Else MsgBox("Primer Ingreso Encontrado ", MsgBoxStyle.Information, "Mensaje") End If cn.Close() End Sub

Siguiente
cn.Open() If (fila >= 0 And fila < dt.Rows.Count - 1) Then fila = fila + 1 Actualiza() Else MsgBox("Ultimo Ingreso Encontrado", MsgBoxStyle.Information, "Mensaje")

GRAFICA DE GANTT
End If cn.Close() End Sub

Botn guarder
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click cn.Open() Dim GuardarDatos As String = " Insert into ingresos (Id_ingreso,Fecha_ingreso,Fuente_ingreso,Cantidad)" & "Values('" & TextBox1.Text & "','" & TextBox2.Text & "','" & ComboBox1.Text & "','" & TextBox4.Text & "')" Dim dataAdapter As New OleDb.OleDbDataAdapter(GuardarDatos, cn) dataAdapter.Fill(dt) MsgBox("Se Agrego registro Correctamente", MsgBoxStyle.Information, "Mensaje") ' Limpiar() dataAdapter.Dispose() cn.Close() End Sub

Botn regresar al men


Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Me.Close() ingresos.Show() End Sub

GRAFICA DE GANTT

Consultar ingreso
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click cn.Open() Dim strSQL As String = "Select * from ingresos where Id_ingreso= " & (CInt(TextBox1.Text)) Dim dataAdapter As New OleDb.OleDbDataAdapter(strSQL, cn) dt.Reset() dataAdapter.Fill(dt) fila = 0 Actualiza() dataAdapter.Dispose() cn.Close() End Sub

Regresar al men ingresos


Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Me.Close() ingresos.Show() End Sub

Buscar
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click cn.Open() Dim strSQL As String = "Select * from ingresos where Id_ingreso= " & (CInt(TextBox1.Text)) Dim dataAdapter As New OleDb.OleDbDataAdapter(strSQL, cn) dt.Reset() dataAdapter.Fill(dt) fila = 0 Actualiza() dataAdapter.Dispose() cn.Close()

GRAFICA DE GANTT
End Sub

Modificar
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click cn.Open() Dim ModificaDatos As String = "Update ingresos set Id_ingreso= '" & TextBox1.Text & "', Fecha_ingreso = '" & TextBox2.Text & "' , Fuente_ingreso ='" & ComboBox1.Text & "', Cantidad ='" & TextBox4.Text & "' where Id_ingreso= " & CStr(TextBox1.Text) Dim dataAdapter As New OleDb.OleDbDataAdapter(ModificaDatos, cn) dataAdapter.Fill(dt) dataAdapter.Dispose() MsgBox("Ingreso Modificado exitosamente ", MsgBoxStyle.Information, "Mensaje") cn.Close() End Sub

Volver al menu ingresos


Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Me.Close() ingresos.Show() End Sub

Equipos de proyecto El equipo que integra el proyecto de anlisis y programacin son: Mnica Alba Escobedo, como analista general del sistema Juana Manuela Guevara, como programadora general del proyecto.

Você também pode gostar