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
138
VB.NET Embed Progress Bar In Tree Or List View
posted

Greetings All,

I'm currently working on a project where I transfer a rather large database table across the internet.  On the form I want to place either a tree or list view, and in a subitem (ListView) I want to add a progress bar.  How do I go about embedding a control like a progress bar into either/or/both a TreeView or ListView?

Many thanks!

Jeff

Parents
No Data
Reply
  • 469350
    Offline posted

    Hi Jeff,

    The easiest way to do this is to place an UltraProgressBar control on the form and use the EditorControl property of the grid column, tree column, or ListView SubItemColumn to assign the ProgressBar to the column.

    The MinValue/MaxValue on the column determines the range of the progress bar and the value of the cell determines it's current value for each row.

Children