progress bar in the status bar

liam

Member
Joined
Jun 8, 2004
Messages
23
Programming Experience
Beginner
can anyone help me on how i can put my progress bar inside the status bar... thanks...
 
i dont know what is your trying to figure out.
what i've understand in your problem is that you want the progressbar inside the premises of the status bar.
VB.NET:
 'StatusBar1
 		'
 		Me.StatusBar1.Location = New System.Drawing.Point(0, 233)
 		Me.StatusBar1.Name = "StatusBar1"
 		Me.StatusBar1.Size = New System.Drawing.Size(292, 40)
 		Me.StatusBar1.TabIndex = 2
 		Me.StatusBar1.Text = "StatusBar1"
 		'
 		'ProgressBar1
 		'
 		Me.ProgressBar1.Location = New System.Drawing.Point(0, 248)
 		Me.ProgressBar1.Maximum = 1000
 		Me.ProgressBar1.Minimum = 1
 		Me.ProgressBar1.Name = "ProgressBar1"
 		Me.ProgressBar1.Size = New System.Drawing.Size(280, 16)
 		Me.ProgressBar1.TabIndex = 3
 		Me.ProgressBar1.Value = 1

it is inside the status bar.

pls. explain clearly your problem.
or im i wrong in my interpretation.
 
Back
Top