I have a form1, there's a "download" button, and a "next" button. By default, the "next" button is disabled. When I click "download" button, I will call a method from download.cs, different from form1.cs. After downloading, I want the "next" button to be enabled, so in download.cs, after receiving all files, I put
form1.btnNext.Enabled = true;
But it doesn't work. I also put this in form1.cs
public void enableButton(bool enabled)
{ btnNext.Enabled = enabled; }
and in download.cs I put:
private form1 form1; ...
form1.enableButton(true);
but it doesn't work either. Could any1 show me where I'm wrong? thanks in advance.