![]() |
Desktop Development »
Miscellaneous »
Miscellaneous Controls
Intermediate
The Inticator ControlBy Mike FinneganA Task Manager Memory Usage-alike control. |
C#, Windows, .NET1.0, .NET1.1, Visual-Studio, Dev
|
|
Advanced Search Add to IE Search |
|
|
|
||||||||||||||||

This is a control which mimics the Task Manager Memory Usage Control. You know, if you open the Task Manager in Windows 2000, you can see an indicator which displays the memory usage in green. Well, the Inticator is such a control.
Why the name Inticator? Inticator is a contraction of Int32 and Indicator. I don't like the name that much, but couldn't find anything better.
Inticator _Inticator4 = new Inticator();
...
_Inticator4.BackColor = Color.Black;
_Inticator4.Top = 100;
_Inticator4.Left = 10;
_Inticator4.Width = 100;
_Inticator4.GraphWidth = 4;
_Inticator4.Height = 120;
_Inticator4.ForeColor = Color.FromArgb(255,0,0);
_Inticator4.Minimum = 10;
_Inticator4.Maximum = 20;
_Inticator4.Value = 15;
_Inticator4.Text = "15 MB";
...
That's it! Very easy to use indeed!
| You must Sign In to use this message board. | |||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||
General
News
Question
Answer
Joke
Rant
Admin
Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads.
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 18 Feb 2004 Editor: Smitha Vijayan |
Copyright 2004 by Mike Finnegan Everything else Copyright © CodeProject, 1999-2010 Web10 | Advertise on the Code Project |