Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. sicilpol

    Simulation of instalation progress Word- VBA (progressbar)

    thanks :D thanks to one person, i chenged: Dim ile As Integer Dim k As Long UserForm1.Caption = "Attenzione: installazione in corso." For ile = 0 To 1000 UserForm1.Repaint 'delay For k = 1 To 10000000 Next k ProgressBar1.Value = ile Label1 = Int(ile / 10) & " %"...
  2. sicilpol

    Simulation of instalation progress Word- VBA (progressbar)

    I simply make this: created for now microsoft office progressbar6 than created comand button and put this code Dim x As Long Dim y As Long Dim z As Long y = 10 ProgressBar1.Value = 0 For x = 1 To 10 z = x * y For s = 0 To 1000 Next s ProgressBar1.Value = z Next x this worked now, what to do...
  3. sicilpol

    Simulation of instalation progress Word- VBA (progressbar)

    decided to write here for a help I need to create simulazione of instalation program to burn CD (As nero) I need to create 2 progress bar 4 labels 1 pulsant button (command) and join them in this way: 1. ulsant button has to move progress bars one from 0-1000 second from 1000-0 2. EWvery...

Part and Inventory Search

Back
Top