I know what u want! so dont make u tired cuz I did myself before.
Well u need a variable to work with in diffrent forms & ... (in all part of project) so creat a class & put it there.
ur class will be like:
Code:
using System;
namespace App_Name
{
public class [u]Class_Name</u>
{
private static string Val;
public static string [u]urVariable</u>
{
set
{
Val = value;
}
get
{
return Val;
}
}
}
}
Then in whole of ur Project u can access it as : [u]Class_Name.urVariable</u>
HTH.
Always:),
Hovik Melkomian.