View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
zoddiax zoddiax is offline
external usenet poster
 
Posts: 8
Default Progress Bar Query

Hi,

I am opening an excel file in web browser in windows forms. I want to
implement progress bar which increases when the file is loading in the
browser.

Following is my code

private void lbListScripts_SelectedIndexChanged(object sender, EventArgs e)
{
wbBrowser.Navigate("D:\\" + lbListScripts.Text);
}

Can you tell me how can I implement it.

Thanks.