I recently starting creating my own classes and I decided to create a simpel one, but i ran into 1 problem. here's whats going on:
In my Form1 I have a
SqlCeConnection sqlCEconn = new SqlCeConnection(@"Data Source = C:\Dropbox\Visual\Database test2 -treeview\Database test2 -treeview\Database2.sdf");
and in my new class called test, I have this:
namespace Database_test2__treeview
{
class test
{
public string testCHECK()
{
SqlCeConnection sqlCEconn = new SqlCeConnection();
if (sqlCEconn.State == ConnectionState.Open)
{
return "Database connection: Open";
}
if (sqlCEconn.State == ConnectionState.Closed)
{
return "Database connection: Closed";
}
else
{
return "";
}
}
}
}
Later in Form1 im using my new class to check if the connection is open or not, by doing:
private void Form1_Load(object sender, EventArgs e)
{
sqlCEconn.Open();
test testconnection = new test();
Toolstrip1.Text = testconnection.testCHECK();
It's obvious that the return string will be "Closed", since my SqlCeConnection in test.cs is not linked to the SqlCeConnection in my Form1
how do I do that in a simple manner ?
thanks.
