I am new to using Visual C++. I used a Control box in the Resource view tab to create the progress bar in the dialog box. This puts all the information in one file. In another file, I want to update the same progress bar so that it looks like it is downloading. How do I do that?
For example:
one file
Progress.cpp:
Member variable,m_pBar, is assigned to Progress Bar that was created by the Control box in the dialog box.
Update.Cpp
I want to update the progress bar in Progress.cpp so that it looks like I am downloading while I am sending information.
For example:
one file
Progress.cpp:
Member variable,m_pBar, is assigned to Progress Bar that was created by the Control box in the dialog box.
Update.Cpp
I want to update the progress bar in Progress.cpp so that it looks like I am downloading while I am sending information.