Hi all i am obtaining game stats data through c# using HttpWebRequest and am returning chunks of data which is passing through class variabled held in dll files.

my question is which i am unsure of is i would like to add a progress bas to show the players current rank between sets of numbers:

example:
START LEVEL: 620000
CURRENT LEVEL: 623412
TO NEXT LEVEL: 720000

i would like to somehow using a progress bare workout the above numbers and be displayed.
some help would be greatful.

kind regards

Recommended Answers

All 2 Replies

i think i may have solved it
using the following method

progressLevel.Minimum = 620000;
progressLevel.Maximum = 720000;
progressLevel.Value = 623412;

any opinions to make this function better or alternatives would be a great help

I would say that is pretty much spot on for what you're trying to achieve.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.