hi I have 2 progress bar:
Qt Code:
  1. b1.setProgress (0, n);
  2. b2.setProgress(0,n*2)
  3. for (int i=0; i< n; i++) {
  4. b1.setProgress(i);
  5. b2.setProgress(i)
  6. }
To copy to clipboard, switch view to plain text mode 
at the end I think b1 bar must be at its end! and b2 at its half. is it right? is it work so?
thanks.... (I need to do that)...