Hello:)
I can change background colour on my existing form like this:
this.BackColor = System.Drawing.Color.Green;
or like this
ActiveForm.BackColor = System.Drawing.Color.Green;
But I have another form called CustomerData
What I want to know is how I go about using a button click event on the first form to change the background colour on the CustomerData form?
Thank you ... John.