Jump to content

Dados de um Form para outro


sYnced

Recommended Posts

Bem pessoal o meu código é o seguinte abaixo:

ListViewItem itm = listView1.SelectedItems[0];
int theID = int.Parse(itm.SubItems[0].Text);
string nome = itm.SubItems[1].Text;
string cidade = itm.SubItems[2].Text;
frmEdit_click frm = new frmEdit_click();
equipa eq = new equipa();
eq.ID = theID;
eq.Nome = nome;
eq.Cidade = cidade;
frm.Show(eq);

no frm.show(eq) dá erro, se entendem o que estou a tentar passar é uma classe.

Alguém sabe como posso fazer isso sem escrever frm.ID = 1; e assim adiante ? passar logo a classe!

******EDIT BEM PESSOAL FIZ DE OUTRA MANEIRA E DEIXO AQUI O CÓDIGO PARA PERCEBEREM

FORM 1:

		    frmEdit_click frm = new frmEdit_click();
		    equipa eq = new equipa();
		    eq.ID = theID;
		    eq.Nome = nome;
		    eq.Cidade = cidade;
		    frm.recebe_dados(eq);
		    frm.Show();

FORM 2:

equipa eq = new equipa();
    public void recebe_dados(object i)
    {
	    eq = (equipa)i;
    }
    private void frmEdit_click_Load(object sender, EventArgs e)
    {
	    txtID.Text = eq.ID.ToString();
	    txtNome.Text = eq.Nome;
	    txtCidade.Text = eq.Cidade;
    }

Edited by sYnced
Link to comment
Share on other sites

porque que nao nao mandas a class para o construtor(claro que tens que criar o construtor que receba a variavel) ou crias uma funcao publica para enviar os dados para a form?

Por muito mais que que estude só aprendo uma coisa, que ainda tenho muita coisa para aprender.

A beleza de um código está em decompor problemas complexos em pequenos blocos simples.

"learn how to do it manually first, then use the wizzy tool to save time."

"Kill the baby, don't be afraid of starting all over again. Fail soon, learn fast."

Link to comment
Share on other sites

public class asd : Forms
{
 AlgumaClass _mm;
//....
 asd(AlgumaClass jj): this()
 {
 _mm=jj;
 }
//......
}


//....
frmEdit_click frm = new frmEdit_click(eq);

Por muito mais que que estude só aprendo uma coisa, que ainda tenho muita coisa para aprender.

A beleza de um código está em decompor problemas complexos em pequenos blocos simples.

"learn how to do it manually first, then use the wizzy tool to save time."

"Kill the baby, don't be afraid of starting all over again. Fail soon, learn fast."

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.