อยากให้ Process Bar โชว์เปอร์เซนการทำงานด้วยน่ะค่ะ ต้องทำอย่างไงดีค่ะ ต้องเขียนโค้ดหรือป่าว ช่วยแนะนำหน่อยนะค่ะ
Tag : .NET, VB.NET
Date :
2011-12-09 14:46:42
By :
modzaa07
View :
1635
Reply :
2
No. 1
Guest
Code (VB.NET)
for i as Integer = 1 to 100000
Me.ProgressBar.Value = CInt((ProgressBar.Maximum * i) / 100000)
Me.lblPercent.Text = Me.ProgressBar.Value & "%"
Me.lblPercent.Refresh()
next