473,943 Members | 4,349 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

bouncing progresscontrol ?

Hello, does anybody have a bouncing prograssbar control?

Like in xp, you have a normal progressbar but instead of going from left to
right and fill out the whole progressbar and then stop.

I want it to go from left to right and then back from right to left, and
only showing about 10 steps at a time...

Meaning:
< - >
< - >
< ->
< - >
< - >
<- >

and so on...
AND, IT has to have xp look (Look like an progressbar does in xp)
Does anyone know where to find a control like this?

Yours: Kristoffer
Nov 20 '05 #1
12 1348
I replied to your other post ( you can easily implement the "bouncing",
too ):

I would take some screenshots of the XP one:
The Upper Left Border
The Upper Right Border
The Upper Middle Border
and so on, plus the actual progress "bars",
then combine them together in the Paint event.

The flickering can be solved by double buffering (draw to hidden surface,
then blit to screen).

- Pete

"Kristoffer Arfvidson" <kr********@spa mtrap.com> wrote in message
news:uU******** ******@tk2msftn gp13.phx.gbl...
Im woundering though...
I would like it to have an xp, look and feel...
so, how is it possible to make it look like and xp statusbar???

(do I have to make an image and put in its place???)?
Where can I find this image?

Yours: Kristoffer

"AirPete" <x@x.x> skrev i meddelandet
news:8w******** ********@newsre ad2.news.pas.ea rthlink.net...
I wrote one for you, get it here:
http://www23.brinkster.com/peteprodu...teProgress.zip

I hope this helps!
Let me know if you have any questions about it.

- Pete


"Kristoffer Arfvidson" <kr********@spa mtrap.com> wrote in message
news:Ox******** ******@TK2MSFTN GP09.phx.gbl... Hello, does anybody have a bouncing prograssbar control?

Like in xp, you have a normal progressbar but instead of going from left to right and fill out the whole progressbar and then stop.

I want it to go from left to right and then back from right to left, and
only showing about 10 steps at a time...

Meaning:
< - >
< - >
< ->
< - >
< - >
<- >

and so on...
AND, IT has to have xp look (Look like an progressbar does in xp)
Does anyone know where to find a control like this?

Yours: Kristoffer

Nov 20 '05 #2
* "Kristoffer Arfvidson" <kr********@spa mtrap.com> scripsit:
Hello, does anybody have a bouncing prograssbar control? [...]


We already read your other post, there is no need to repost.

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #3
Kristoffer,

I HIGHLY recommend you do not implement this "bouncing" progress bar. It is
extremely annoying as a user to see a progress bar go back and forth.
Progress bar are meant to indicate progress toward the completion of a goal.

I suggest you use the progress bar the normal way, but indicate "Step X of
Y" somewhere on the screen. I have also seen two progress bars used together
where one indicates the progress of a single step and the other indicates
overall progress.

Whatever you choose, remember that your users will be anxiously waiting for
your progress bars to "complete".

Andrew J. Marshall
MCP (Visual Basic)
Fairfax, VA

"Kristoffer Arfvidson" <kr********@spa mtrap.com> wrote in message
news:Ox******** ******@TK2MSFTN GP09.phx.gbl...
Hello, does anybody have a bouncing prograssbar control?

Like in xp, you have a normal progressbar but instead of going from left to right and fill out the whole progressbar and then stop.

I want it to go from left to right and then back from right to left, and
only showing about 10 steps at a time...

Meaning:
< - >
< - >
< ->
< - >
< - >
<- >

and so on...
AND, IT has to have xp look (Look like an progressbar does in xp)
Does anyone know where to find a control like this?

Yours: Kristoffer

Nov 20 '05 #4
mmm...
The problem is, that This progressbar is there to inform the user that a
connection is beeing done to the internet...
Now, Its more or less impossible to predict how long the action will take,
and I want to make sure the end user knows that something is happening...
This kind of bar is the best kind of interface I come across lately and it
would really help me with my task...

Unfortunatly, I cant know how long it would take, because its a matter of
connecting to a webservice...

Yours: Kristoffer

"Andrew J. Marshall" <An************ *@ObjectVision. netANTISPAMDEVI CE> skrev
i meddelandet news:OX******** ******@TK2MSFTN GP10.phx.gbl...
Kristoffer,

I HIGHLY recommend you do not implement this "bouncing" progress bar. It is extremely annoying as a user to see a progress bar go back and forth.
Progress bar are meant to indicate progress toward the completion of a goal.
I suggest you use the progress bar the normal way, but indicate "Step X of
Y" somewhere on the screen. I have also seen two progress bars used together where one indicates the progress of a single step and the other indicates
overall progress.

Whatever you choose, remember that your users will be anxiously waiting for your progress bars to "complete".

Andrew J. Marshall
MCP (Visual Basic)
Fairfax, VA

"Kristoffer Arfvidson" <kr********@spa mtrap.com> wrote in message
news:Ox******** ******@TK2MSFTN GP09.phx.gbl...
Hello, does anybody have a bouncing prograssbar control?

Like in xp, you have a normal progressbar but instead of going from left

to
right and fill out the whole progressbar and then stop.

I want it to go from left to right and then back from right to left, and
only showing about 10 steps at a time...

Meaning:
< - >
< - >
< ->
< - >
< - >
<- >

and so on...
AND, IT has to have xp look (Look like an progressbar does in xp)
Does anyone know where to find a control like this?

Yours: Kristoffer


Nov 20 '05 #5

Im sorry, It was ment to be posted in another group...

Yours: Kristoffer

"Herfried K. Wagner [MVP]" <hi************ ***@gmx.at> skrev i meddelandet
news:OY******** ******@tk2msftn gp13.phx.gbl...
* "Kristoffer Arfvidson" <kr********@spa mtrap.com> scripsit:
Hello, does anybody have a bouncing prograssbar control? [...]


We already read your other post, there is no need to repost.

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>

Nov 20 '05 #6
Yeah I saw, however, I would like to have a control that is based on the XP
Theme, that the user has implemented...
I would like to avoid images and so on in my controls...

Yours: Kristoffer
"AirPete" <x@x.x> skrev i meddelandet
news:Fk******** **********@news read1.news.pas. earthlink.net.. .
I replied to your other post ( you can easily implement the "bouncing",
too ):

I would take some screenshots of the XP one:
The Upper Left Border
The Upper Right Border
The Upper Middle Border
and so on, plus the actual progress "bars",
then combine them together in the Paint event.

The flickering can be solved by double buffering (draw to hidden surface,
then blit to screen).

- Pete

"Kristoffer Arfvidson" <kr********@spa mtrap.com> wrote in message
news:uU******** ******@tk2msftn gp13.phx.gbl...
Im woundering though...
I would like it to have an xp, look and feel...
so, how is it possible to make it look like and xp statusbar???

(do I have to make an image and put in its place???)?
Where can I find this image?

Yours: Kristoffer

"AirPete" <x@x.x> skrev i meddelandet
news:8w******** ********@newsre ad2.news.pas.ea rthlink.net...
I wrote one for you, get it here:
http://www23.brinkster.com/peteprodu...teProgress.zip

I hope this helps!
Let me know if you have any questions about it.

- Pete

"Kristoffer Arfvidson" <kr********@spa mtrap.com> wrote in message
news:Ox******** ******@TK2MSFTN GP09.phx.gbl...
Hello, does anybody have a bouncing prograssbar control?

Like in xp, you have a normal progressbar but instead of going from left

to
right and fill out the whole progressbar and then stop.

I want it to go from left to right and then back from right to left, and
only showing about 10 steps at a time...

Meaning:
< - >
< - >
< ->
< - >
< - >
<- >

and so on...
AND, IT has to have xp look (Look like an progressbar does in xp)
Does anyone know where to find a control like this?

Yours: Kristoffer


Nov 20 '05 #7
* "Kristoffer Arfvidson" <kr********@spa mtrap.com> scripsit:
Im sorry, It was ment to be posted in another group...


Doesn't the code I posted work for you?

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #8
I forgot about the silver and green themes.
Search for "xp visual style" MSDN.
This article (watch for link wrapping) is good:
http://msdn.microsoft.com/library/de.../xptheming.asp

- Pete

"Kristoffer Arfvidson" <kr********@spa mtrap.com> wrote in message
news:ub******** ******@TK2MSFTN GP10.phx.gbl...
Yeah I saw, however, I would like to have a control that is based on the XP Theme, that the user has implemented...
I would like to avoid images and so on in my controls...

Yours: Kristoffer
"AirPete" <x@x.x> skrev i meddelandet
news:Fk******** **********@news read1.news.pas. earthlink.net.. .
I replied to your other post ( you can easily implement the "bouncing",
too ):

I would take some screenshots of the XP one:
The Upper Left Border
The Upper Right Border
The Upper Middle Border
and so on, plus the actual progress "bars",
then combine them together in the Paint event.

The flickering can be solved by double buffering (draw to hidden surface, then blit to screen).

- Pete

"Kristoffer Arfvidson" <kr********@spa mtrap.com> wrote in message
news:uU******** ******@tk2msftn gp13.phx.gbl...
Im woundering though...
I would like it to have an xp, look and feel...
so, how is it possible to make it look like and xp statusbar???

(do I have to make an image and put in its place???)?
Where can I find this image?

Yours: Kristoffer

"AirPete" <x@x.x> skrev i meddelandet
news:8w******** ********@newsre ad2.news.pas.ea rthlink.net...
> I wrote one for you, get it here:
> http://www23.brinkster.com/peteprodu...teProgress.zip
>
> I hope this helps!
> Let me know if you have any questions about it.
>
> - Pete

"Kristoffer Arfvidson" <kr********@spa mtrap.com> wrote in message
news:Ox******** ******@TK2MSFTN GP09.phx.gbl...
Hello, does anybody have a bouncing prograssbar control?

Like in xp, you have a normal progressbar but instead of going from left
to
right and fill out the whole progressbar and then stop.

I want it to go from left to right and then back from right to left,

and only showing about 10 steps at a time...

Meaning:
< - >
< - >
< ->
< - >
< - >
<- >

and so on...
AND, IT has to have xp look (Look like an progressbar does in xp)
Does anyone know where to find a control like this?

Yours: Kristoffer



Nov 20 '05 #9
* "AirPete" <x@x.x> scripsit:
I forgot about the silver and green themes.
Search for "xp visual style" MSDN.
This article (watch for link wrapping) is good:
http://msdn.microsoft.com/library/de.../xptheming.asp


Why implement something that already exists in the system?

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
1229
by: Jonathan Gennick | last post by:
Once again, I find myself looking to contact contributors to the Python Cookbook, this time for chapter 2. If you know how to contact any of the people listed below, please contact me at jgennick@oreilly.com . It would be a big help. Matteo Dell'Amico Sebastien Keim Yakov Markovitch Amos Newcombe John Nielsen
0
1245
by: Benny Alexander | last post by:
Hi, I have a small form to Email script, to test my server, With CDONTS. The Mails is bouncing to bad mail folder, and I do not know the reason why. anyone can help. <%@language = VBScript%> <%Option Explicit%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
0
1428
by: sanj | last post by:
Hi There, 1. My first attempt at a CSS-based layout, seems okay in IE6, however the page shifts from right to left in FFox. Test site at: http://www.eastdayspa.com/test/ CSS: http://www.eastdayspa.com/test/styles/main.css This happens when anything other than text is put in the content e.g
1
1706
by: Paul | last post by:
Hi all, I'm using the CDO.Message object to send out a large number of subscription emails daily from a website. We always get a large number of delay and failure notification emails coming back. Does anyone know of a way to specify in the CDO.Message object that you don't want to receive any notifications of the delivery status - i.e. a property of the message object or some email header?
2
2490
by: steve | last post by:
I'm trying to create a PHP script to send mail to a list of addresses. I'm sending mail okay, because the messages arrive in an account that I can check, but messages to a known bad address aren't being bounced back to the sending address. Here's the line of code I'm using: $mailok = mail("me@goodaddress.com,me@badaddress.com","this is a test", "this is a test", "From: me@sendaddress.com");
2
2660
by: ceadtinneh | last post by:
Hello Folks, Our web based application accesses our SQL Server 2k database using a connection pool of about 150 connections through a BEA JDBC driver. We recently had a situation where one of our app servers lost connectivity to the database server (the BEA error logs indicated the following: java.sql.SQLException: A problem occurred
0
931
by: Brian | last post by:
Just to let you all know, got the issues with the puck straddling the the hit-line's (jerking). The error was that i was forgetting to add on the width of the image. Let me elaborate... the puck is an image (puck.png) drawn and is set at 35 pixels (height and width). When the puck bounced at the top, it just read the puck_x which was fine as that was the beginning of the image (the 0,0 in height and
1
1174
by: Freaky Coder | last post by:
Can anyone tell me if I'm insane or not? I have a problem where I have a data tier where every class represents a table, and a class can have properties which are object of another class. For instance: Data.Car.Driver ' A Driver class Data.Car.Passengers ' A Passenger collection class The problem is, if I then have a business layer that inherits from the data layer, and I then use the business layer in my UI, the object namespaces can
2
1790
by: SilentCodingOne | last post by:
I have a application where each time you click the add ball button a new randomly colored ball is added to the jpanel. It works fine except that the balls suddenly stop at the same spot. I want them to continue to bounce for a longer period of time instead of like 8 bounces. It was going around withoutstopping prior to my getting the add new ball part working. I cannot seem to figure out what I did wrong. Also curious if anyone new of a tip as...
0
9970
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
11541
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
11133
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
11304
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
6090
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
6312
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4914
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
4515
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3516
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.