0% found this document useful (0 votes)
6 views

excodc#4

The document is a C# Windows Forms application code for a menu form named 'frmMenu'. It includes event handlers for button clicks that open different forms: 'frmFunc' for registration and 'frmListaFunc' for consultation. Additionally, there is a button to close the menu form.

Uploaded by

Victor Afonso
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views

excodc#4

The document is a C# Windows Forms application code for a menu form named 'frmMenu'. It includes event handlers for button clicks that open different forms: 'frmFunc' for registration and 'frmListaFunc' for consultation. Additionally, there is a button to close the menu form.

Uploaded by

Victor Afonso
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

using System;

using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace bacnodados
{
public partial class frmMenu : Form
{
public frmMenu()
{
InitializeComponent();
}

private void frmMenu_Load(object sender, EventArgs e)


{

private void btnCadastro_Click(object sender, EventArgs e)


{
frmFunc c = new frmFunc();
c.Show();
}

private void btnConsulta_Click(object sender, EventArgs e)


{
frmListaFunc cl = new frmListaFunc();
cl.Show();
}

private void btnSair_Click(object sender, EventArgs e)


{
this.Close();
}
}
}

You might also like