Nov 24, 2012 at 11:57am
how to program the progress bar?
Nov 24, 2012 at 12:10pm
Depends what sort of GUI you are using.
Mainly, set the "completed" part as a proportion of the total length of the bar.
Nov 28, 2012 at 12:54pm
kind of understood,example code would be helpful
Nov 28, 2012 at 12:58pm
Which operating system do you use?
Do you want a text-based example using asterisks for example, or one using proper graphics?
Nov 29, 2012 at 12:17pm
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 Nov 29, 2012 at 12:17pm
Nov 29, 2012 at 9:10pm
Last edited on Nov 29, 2012 at 9:14pm