Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
53790
Can the activityIndicator be run in its own thread?
posted

I might be able to get a progress update when doing a large zip file. But I'm sure I can't do this when doing a call to SQL Server 2008, for example:-

string sqlStmt = String.Format("BACKUP DATABASE [{0}] TO DISK='{1}'", DatabaseName, BackupFullFilename);

using (SqlCommand cmd = new SqlCommand(sqlStmt, conn))

{

    conn.Open();

    cmd.ExecuteNonQuery();

    conn.Close();

}

 

Can the activityIndicator be run in its own thread?

Parents
No Data
Reply Children
No Data