Its obvious to get this error as you are using it going beyond its scope. You can use it inside GetTyreSize Method only.
Simply make it Global(not always a good approach) or return it (good approach) like:
TextBox1.Text = RegSearch.GetTyreSize(regNo);
Hope it helps :)