473,480 Members | 1,819 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

XP like ProcessBar

Hi all
I want to make a processBar like the processbar then XP start up, without
any mesument just indicakiten the process working. I can use a ordinar
ProcessBar system vith max, min and value input. I have try to google a
solution but can find any hint how to do it.

Best Regard
Kim s.
Jan 8 '08 #1
2 2449
marquee mode?

Application.EnableVisualStyles();
using (Form f = new Form())
using (ProgressBar pb = new ProgressBar()) {
pb.Style = ProgressBarStyle.Marquee;
f.Controls.Add(pb);
Application.Run(f);
}

Marc
Jan 8 '08 #2
random aside; you've got to love the frugality of C# 3 (see below) for
these snippet examples... I only wish that we could rely on everybody
having Orcas...

Application.EnableVisualStyles();
Application.Run(new Form {
Controls = {new ProgressBar {Style =
ProgressBarStyle.Marquee}}
});

Marc
Jan 8 '08 #3

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

Similar topics

1
340
by: M O J O | last post by:
Hi, In the buttom of my mesktop, I have the processbar (hope that it's called processbar, because I translated it from Danish). If I maximize an application, the processbar is always visible....
0
960
by: pei_world | last post by:
I have an app that get dataset from database, I would like to add a processbar to monitor the whole process,like the setup up process bar. when ready to display, then processbar fill with full....
2
1376
by: cyshao | last post by:
When we copy files in MyComputer, there is a dialog with a ProcessBar and a Cancel button. Does C# provide something like this dialog? Thanks CYShao
13
2583
by: Tom Scales | last post by:
OK, I admit, I am not a VB.NET expert and am still learning, but have run into an annoying problem. I'm writing a program that has to search the file system and therefore processes large numbers...
5
3237
by: Paul Hasell | last post by:
Hi, I'm trying to invoke a web method asynchronously but just can't seem to get it to tell me when it has finished! Below is the code I am (currently) using: private void...
4
3230
by: Charleees | last post by:
GIFS not working properly in JavaScript PopUps Hi all, I have a button and when i click tha button it redirects to another page..... I have also added a java script for the button that...
2
1769
by: gshzheng | last post by:
Hi,all How can I custom a listview which item contains a processbar-like control? And each processbar can be set respectively. Any help gratefully received. gshzheng 20070526
0
1667
by: =?Utf-8?B?d2luZHNpbQ==?= | last post by:
Hi, I have a c# program that needs to show the progressbar which is circular processbar,just like the one when windows xp loading. I tried below: private void...
3
1100
by: =?Utf-8?B?Sk9TRS5BLlJPRFJJR1VFWixKUg==?= | last post by:
hello every one,happy new years. my first question is,should i worry about 69 or 70 processess running,can i delete,or stopp them from running,is it safe,please reply
0
7037
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
6904
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...
0
7076
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...
1
6730
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...
0
6873
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5321
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
4471
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
2990
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...
0
2976
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

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.