For some unknown reasons this silly thing cant be implemented.
I have an int count in the main form which I want to return to another class or form.
namespace my_speller
{
public partial class login : Form
{
public login()
{
InitializeComponent();
}
int count;
private void btnlogin_MouseUp(object sender, MouseEventArgs e)
{
dbaccess obj = new dbaccess();
for (int i = 0; i < 10; i++)
{
if (txtusername.Text == obj.Usersusername()[i])
{
count = i;
break;
}
}
}
public int namecount()
{
return count;
}
}
}
dbaccess is another class and I could successfully call a function (Usersusername) defined in that class to my login form. Everything works fine up to this. Now I want to get the int count from main form back to dbaccess class. So I implemented a public function namecount to return count. But count is always zero in the other class. In the main form, I get the value of count correctly (which is i). But nothing gets returned when I call from dbaccess class this way:
login obj = new login();
// do stuff
or from another form in the same program, like this:
namespace my_speller
{
public partial class student : Form
{
public student()
{
InitializeComponent();
}
private void button3_Click(object sender, EventArgs e)
{
login obj = new login();
MessageBox.Show(obj.namecount().ToString());
}
The messagebox here should display count which is some number, but what's displayed is zero. What could possibly be the cause??
The same thing happens when I'm trying to return a string from my main form. It's always null in other classes :(
Thanks in advance
Edit: Can you give the code snippet itself. I cant know the technical terms you might use to help me
