the thread u started is locked i couldnt reply so here is your answer
to use "global" variables in c# you can use static variables
[code]
public class blah
{
private blah()
{
}
public static string strBlah;
public static string strBlah2;
}
TO USE THEM
u dont have to create instance of this class to use them
just do blah.strBlah = "test";
[/code]