Compact Framework Progress Bar?
-
I'm trying to make a progress bar using the COmpact Framework for a Pocket PC. However, in the Compact Framework, there is no step property, nor is there a performstep method. Does anyone have an example of a working progress bar using the Compact Framework?. I just want it to float indepenently at the front of my application. Also, a messagebox of some sort with moving ... 's would be acceptable as well, but I don't know how to code it either.
-
I'm trying to make a progress bar using the COmpact Framework for a Pocket PC. However, in the Compact Framework, there is no step property, nor is there a performstep method. Does anyone have an example of a working progress bar using the Compact Framework?. I just want it to float indepenently at the front of my application. Also, a messagebox of some sort with moving ... 's would be acceptable as well, but I don't know how to code it either.
Blatant self publicity: http://www.codeproject.com/netcf/hangman_dncf.asp[^] There is an example of a progress bar in my Hangman game for the pocketPC.
"If a man empties his purse into his head, no man can take it away from him, for an investment in knowledge pays the best interest." -- Joseph E. O'Donnell The Second EuroCPian Event will be in Brussels on the 4th of September Can't manage to P/Invoke that Win32 API in .NET? Why not do interop the wiki way!
-
I'm trying to make a progress bar using the COmpact Framework for a Pocket PC. However, in the Compact Framework, there is no step property, nor is there a performstep method. Does anyone have an example of a working progress bar using the Compact Framework?. I just want it to float indepenently at the front of my application. Also, a messagebox of some sort with moving ... 's would be acceptable as well, but I don't know how to code it either.
j1e1g1 wrote: I'm trying to make a progress bar using the COmpact Framework for a Pocket PC. However, in the Compact Framework, there is no step property, nor is there a performstep method. The ProgressBar Class[^] is supported under the .NET Compact Framework, however if you are trying to write your own
ProgressBar
control, you will have to write your own methods and properties. ThePerformStep
method under the .NET Framework only calls theIncrement
method passing thestep
value. TheIncrement
method increments thevalue
to itself, checks to see if it is within bounds and updates the UI. - Nick Parker
My Blog | My Articles