Progress bar

how to program the progress bar?
Depends what sort of GUI you are using.

Mainly, set the "completed" part as a proportion of the total length of the bar.
kind of understood,example code would be helpful
Which operating system do you use?
Do you want a text-based example using asterisks for example, or one using proper graphics?
windows32
example
1
2
3
#include <windows.h>
int WINAPI WinMain(HINSTANCE hinstance,HINSTANCE hPrevInstance,LPSTR  lpCmdLine,int nCmdShow){
MessageBox(0,L"Hello",L"Hello",0);return 0;}
Last edited on
Last edited on
Topic archived. No new replies allowed.