R
Rinaldo
In my program, if the user click on the backupbutton a second dialog
appears. How to start the job automatticly. I think in form_Activated like
this:
Code Blockpublic
frmUpload()
{
InitializeComponent();
}
private void frmUpload_Activated(object sender, EventArgs e)
{
\\ Start the job here
}
private void btnAnnuleer_Click(object sender, EventArgs e)
{
this.Close();
}
or is there another way to accomplish this.
Rinaldo
appears. How to start the job automatticly. I think in form_Activated like
this:
Code Blockpublic
frmUpload()
{
InitializeComponent();
}
private void frmUpload_Activated(object sender, EventArgs e)
{
\\ Start the job here
}
private void btnAnnuleer_Click(object sender, EventArgs e)
{
this.Close();
}
or is there another way to accomplish this.
Rinaldo