Konu
c# formlar arası dizi aktarımı
06-04-2014, 00:22:27
#4
ilkerxx
int tel;
public Form1(int tel)
{
InitializeComponent();
this.tel = tel;
}
formu çağırkende
int tel = 110100101;
Form1 yeniFrm = new Form1(tel);
yeniFrm.Show();