Se realiza un software para un hotel y lo hare en 2 publicaciones
En esta publicacion pongo lo que va en el MainForm
/*
* Creado por SharpDevelop.
* Usuario: Alumno
* Fecha: 09/09/2011
* Hora: 09:32 a.m.
*
* Para cambiar esta plantilla use Herramientas | Opciones | Codificación | Editar Encabezados Estándar
*/
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
namespace practica_6
{
/// <summary>
/// Description of MainForm.
/// </summary>
public partial class MainForm : Form
{
public MainForm()
{
//
// The InitializeComponent() call is required for Windows Forms designer support.
//
InitializeComponent();
//
// TODO: Add constructor code after the InitializeComponent() call.
//
}
void CmdaceptarClick(object sender, EventArgs e)
{
//EN ESTA PARTE VAMOS A VALIDAR AL USUARIO Y CONTRASEÑA
if(txtusuario.Text=="Administrador" && txtcontraseña.Text=="123")
{
Form1 x =new Form1();
this.Visible=false;
x.Show();
}
else
{
MessageBox.Show("Error");
}
}
}
}
No hay comentarios:
Publicar un comentario