Hi everyone
I want to show the progress in percentage over a progress bar, like it is
used in many of the installation programs, like
if the background color of the progress bar is white and the text is showing
"0%" then text is in blue color
When the progress is "100%" the background color of the progress bar is
blue, so I want the text showing "100%" should come with white color

and when the progress is say "50%" then the background color of the progress
bar will be half blue and half white, in this case I want the text showing
"50%" should come as "5" in white color and "0%" as blue color, as if the
text is showing the invert color of the background
Is it possible?

Re: How to show a text showing the progress in percentage on a Progres by Hermit

Hermit
Tue Sep 28 08:14:30 CDT 2004

i am not sure that the default progress bar component would suffice the
requirement.
though i dont think its too difficult writing you custom progress bar.
use a panel if it helps but you will need 2 Label controls.
At run time you will have a progress property where you set the percent
in that property implement the width of each label based on percentage.
the background of one will be blue and the other white (the labels)

--

Regards,

Hermit Dave
(http://hdave.blogspot.com)
"kajol" <kajol@discussions.microsoft.com> wrote in message
news:AEFCD715-2F07-433C-8B58-1DD6B35EB3F7@microsoft.com...
> Hi everyone
> I want to show the progress in percentage over a progress bar, like it is
> used in many of the installation programs, like
> if the background color of the progress bar is white and the text is
> showing
> "0%" then text is in blue color
> When the progress is "100%" the background color of the progress bar is
> blue, so I want the text showing "100%" should come with white color
>
> and when the progress is say "50%" then the background color of the
> progress
> bar will be half blue and half white, in this case I want the text showing
> "50%" should come as "5" in white color and "0%" as blue color, as if the
> text is showing the invert color of the background
> Is it possible?
>



Re: How to show a text showing the progress in percentage on a Pro by kajol

kajol
Tue Sep 28 23:23:02 CDT 2004

but in that case, I do not think I will be able to control the invert text
color like, if the progress is 48% then half of the text "4" is in white and
the rest part of the text "4" is in blue color, can I do that?

"Hermit Dave" wrote:

> i am not sure that the default progress bar component would suffice the
> requirement.
> though i dont think its too difficult writing you custom progress bar.
> use a panel if it helps but you will need 2 Label controls.
> At run time you will have a progress property where you set the percent
> in that property implement the width of each label based on percentage.
> the background of one will be blue and the other white (the labels)
>
> --
>
> Regards,
>
> Hermit Dave
> (http://hdave.blogspot.com)
> "kajol" <kajol@discussions.microsoft.com> wrote in message
> news:AEFCD715-2F07-433C-8B58-1DD6B35EB3F7@microsoft.com...
> > Hi everyone
> > I want to show the progress in percentage over a progress bar, like it is
> > used in many of the installation programs, like
> > if the background color of the progress bar is white and the text is
> > showing
> > "0%" then text is in blue color
> > When the progress is "100%" the background color of the progress bar is
> > blue, so I want the text showing "100%" should come with white color
> >
> > and when the progress is say "50%" then the background color of the
> > progress
> > bar will be half blue and half white, in this case I want the text showing
> > "50%" should come as "5" in white color and "0%" as blue color, as if the
> > text is showing the invert color of the background
> > Is it possible?
> >
>
>
>

Re: How to show a text showing the progress in percentage on a Pro by Hermit

Hermit
Wed Sep 29 07:08:51 CDT 2004

use a panel with background white.
You will have a label for percentage which will should be set to transparent
background. The position of this label is fixed. And it should always be on
the top.
The label with will give the visual indication of percentage should be a
child of the panel. It will have background color of blue. the width of this
will be equivalent of the percentage process.
That should be it

--

Regards,

Hermit Dave
(http://hdave.blogspot.com)
"kajol" <kajol@discussions.microsoft.com> wrote in message
news:4AE747F6-1CA3-4950-9C3B-E0398BC6822B@microsoft.com...
> but in that case, I do not think I will be able to control the invert text
> color like, if the progress is 48% then half of the text "4" is in white
> and
> the rest part of the text "4" is in blue color, can I do that?
>
> "Hermit Dave" wrote:
>
>> i am not sure that the default progress bar component would suffice the
>> requirement.
>> though i dont think its too difficult writing you custom progress bar.
>> use a panel if it helps but you will need 2 Label controls.
>> At run time you will have a progress property where you set the percent
>> in that property implement the width of each label based on percentage.
>> the background of one will be blue and the other white (the labels)
>>
>> --
>>
>> Regards,
>>
>> Hermit Dave
>> (http://hdave.blogspot.com)
>> "kajol" <kajol@discussions.microsoft.com> wrote in message
>> news:AEFCD715-2F07-433C-8B58-1DD6B35EB3F7@microsoft.com...
>> > Hi everyone
>> > I want to show the progress in percentage over a progress bar, like it
>> > is
>> > used in many of the installation programs, like
>> > if the background color of the progress bar is white and the text is
>> > showing
>> > "0%" then text is in blue color
>> > When the progress is "100%" the background color of the progress bar is
>> > blue, so I want the text showing "100%" should come with white color
>> >
>> > and when the progress is say "50%" then the background color of the
>> > progress
>> > bar will be half blue and half white, in this case I want the text
>> > showing
>> > "50%" should come as "5" in white color and "0%" as blue color, as if
>> > the
>> > text is showing the invert color of the background
>> > Is it possible?
>> >
>>
>>
>>



Re: How to show a text showing the progress in percentage on a Pro by kajol

kajol
Thu Sep 30 02:17:02 CDT 2004

Let me do that
Thanks

"Hermit Dave" wrote:

> use a panel with background white.
> You will have a label for percentage which will should be set to transparent
> background. The position of this label is fixed. And it should always be on
> the top.
> The label with will give the visual indication of percentage should be a
> child of the panel. It will have background color of blue. the width of this
> will be equivalent of the percentage process.
> That should be it
>
> --
>
> Regards,
>
> Hermit Dave
> (http://hdave.blogspot.com)
> "kajol" <kajol@discussions.microsoft.com> wrote in message
> news:4AE747F6-1CA3-4950-9C3B-E0398BC6822B@microsoft.com...
> > but in that case, I do not think I will be able to control the invert text
> > color like, if the progress is 48% then half of the text "4" is in white
> > and
> > the rest part of the text "4" is in blue color, can I do that?
> >
> > "Hermit Dave" wrote:
> >
> >> i am not sure that the default progress bar component would suffice the
> >> requirement.
> >> though i dont think its too difficult writing you custom progress bar.
> >> use a panel if it helps but you will need 2 Label controls.
> >> At run time you will have a progress property where you set the percent
> >> in that property implement the width of each label based on percentage.
> >> the background of one will be blue and the other white (the labels)
> >>
> >> --
> >>
> >> Regards,
> >>
> >> Hermit Dave
> >> (http://hdave.blogspot.com)
> >> "kajol" <kajol@discussions.microsoft.com> wrote in message
> >> news:AEFCD715-2F07-433C-8B58-1DD6B35EB3F7@microsoft.com...
> >> > Hi everyone
> >> > I want to show the progress in percentage over a progress bar, like it
> >> > is
> >> > used in many of the installation programs, like
> >> > if the background color of the progress bar is white and the text is
> >> > showing
> >> > "0%" then text is in blue color
> >> > When the progress is "100%" the background color of the progress bar is
> >> > blue, so I want the text showing "100%" should come with white color
> >> >
> >> > and when the progress is say "50%" then the background color of the
> >> > progress
> >> > bar will be half blue and half white, in this case I want the text
> >> > showing
> >> > "50%" should come as "5" in white color and "0%" as blue color, as if
> >> > the
> >> > text is showing the invert color of the background
> >> > Is it possible?
> >> >
> >>
> >>
> >>
>
>
>

Re: How to show a text showing the progress in percentage on a Pro by Hermit

Hermit
Mon Oct 04 14:19:03 CDT 2004

did you get anywhere with the progressbar ?

--

Regards,

Hermit Dave
(http://hdave.blogspot.com)
"kajol" <kajol@discussions.microsoft.com> wrote in message
news:8D3BD3D5-EED9-46CB-8414-E98843938537@microsoft.com...
> Let me do that
> Thanks
>
> "Hermit Dave" wrote:
>
> > use a panel with background white.
> > You will have a label for percentage which will should be set to
transparent
> > background. The position of this label is fixed. And it should always be
on
> > the top.
> > The label with will give the visual indication of percentage should be a
> > child of the panel. It will have background color of blue. the width of
this
> > will be equivalent of the percentage process.
> > That should be it
> >
> > --
> >
> > Regards,
> >
> > Hermit Dave
> > (http://hdave.blogspot.com)
> > "kajol" <kajol@discussions.microsoft.com> wrote in message
> > news:4AE747F6-1CA3-4950-9C3B-E0398BC6822B@microsoft.com...
> > > but in that case, I do not think I will be able to control the invert
text
> > > color like, if the progress is 48% then half of the text "4" is in
white
> > > and
> > > the rest part of the text "4" is in blue color, can I do that?
> > >
> > > "Hermit Dave" wrote:
> > >
> > >> i am not sure that the default progress bar component would suffice
the
> > >> requirement.
> > >> though i dont think its too difficult writing you custom progress
bar.
> > >> use a panel if it helps but you will need 2 Label controls.
> > >> At run time you will have a progress property where you set the
percent
> > >> in that property implement the width of each label based on
percentage.
> > >> the background of one will be blue and the other white (the labels)
> > >>
> > >> --
> > >>
> > >> Regards,
> > >>
> > >> Hermit Dave
> > >> (http://hdave.blogspot.com)
> > >> "kajol" <kajol@discussions.microsoft.com> wrote in message
> > >> news:AEFCD715-2F07-433C-8B58-1DD6B35EB3F7@microsoft.com...
> > >> > Hi everyone
> > >> > I want to show the progress in percentage over a progress bar, like
it
> > >> > is
> > >> > used in many of the installation programs, like
> > >> > if the background color of the progress bar is white and the text
is
> > >> > showing
> > >> > "0%" then text is in blue color
> > >> > When the progress is "100%" the background color of the progress
bar is
> > >> > blue, so I want the text showing "100%" should come with white
color
> > >> >
> > >> > and when the progress is say "50%" then the background color of the
> > >> > progress
> > >> > bar will be half blue and half white, in this case I want the text
> > >> > showing
> > >> > "50%" should come as "5" in white color and "0%" as blue color, as
if
> > >> > the
> > >> > text is showing the invert color of the background
> > >> > Is it possible?
> > >> >
> > >>
> > >>
> > >>
> >
> >
> >