Help im real stuck! Im writing an assignment with 3 forms and want to access int rawScore and decimal averageScore from a seperate Form.
What do i type in the other form to call them?
Thanks.
public partial class NightClubForm : Form
{
int rawScore;
decimal averageScore;
public NightClubForm()
{
InitializeComponent();

. While Visual Studio is a great tool which allows for rapid prototyping it is also a major pitfall - a lot of students these days are thought quick'n'dirty drag'n'drop "programming" and earn their "Object Oriented Programming" certificates that way. Your question absolutely begs even more questions, i.e. have you heard of the basic tennets of OO, and things you are able to do, such as encapsulation, etc?