Windows Develop Bookmark and Share   
 index > Windows Forms Designer > confussion into how to put progress bar into my project
 

confussion into how to put progress bar into my project

please tell me the coding how to add progress bar before retrieving the data.
raman_IT  Friday, October 02, 2009 1:21 PM

This can be achieved by using the toolbox control statusStrip.
Add a staus strip control to your form then add a progress bar to the items collection of status strip using items collection editor.

You can fulfill your requirement by using the properties of progress bar like maximum, minimum, etc.

Eg.,

ToolStripProgressBar1.Minimum = 1

ToolStripProgressBar1.Maximum = datagridview1.Rows.Count + 1

............................................
Hope this will help you:)

 




Rohini Chavakula  Monday, October 05, 2009 1:14 PM

This can be achieved by using the toolbox control statusStrip.
Add a staus strip control to your form then add a progress bar to the items collection of status strip using items collection editor.

You can fulfill your requirement by using the properties of progress bar like maximum, minimum, etc.

Eg.,

ToolStripProgressBar1.Minimum = 1

ToolStripProgressBar1.Maximum = datagridview1.Rows.Count + 1

............................................
Hope this will help you:)

 




Rohini Chavakula  Monday, October 05, 2009 1:14 PM

You can use google to search for other answers

Custom Search

More Threads

• displaying pictures from textboxes
• Checkbox in a Combobox
• MenuItem with an icon to the left
• Setting Toolbox tab programtically for a component in VS2005
• Designer bug?
• Resx won't regenerate, problems with Sourceforge NullableTypes
• <URGENT> Calling a parent form method from a child user control
• TreeNodes with checkboxes
• How to show directory structure on Windows Form in VB.Net 2005?
• Not able to Override text property of label in derived class