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 bar has to have own label with percentuale status of progress
3. One label has to report percentual progress of data delay (how much stayed) from 1 to 10000000
4. One label has to be static and has to be written: "instalation" or "burning"
I already started, butnothing works
Beside adding graphic thisng (labels, button, bars) I wrote 2codes:
For one bar:
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
Then to second bar:
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 = 1000 To 0
Next s
ProgressBar1.Value = z
Next x
but they do not work
i wrote them into command pulsant, i did ok?
Can anyone help me?
Ps. Sorry for my terriblr language
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 bar has to have own label with percentuale status of progress
3. One label has to report percentual progress of data delay (how much stayed) from 1 to 10000000
4. One label has to be static and has to be written: "instalation" or "burning"
I already started, butnothing works
Beside adding graphic thisng (labels, button, bars) I wrote 2codes:
For one bar:
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
Then to second bar:
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 = 1000 To 0
Next s
ProgressBar1.Value = z
Next x
but they do not work
i wrote them into command pulsant, i did ok?
Can anyone help me?
Ps. Sorry for my terriblr language