ID: Q175537
The information in this article applies to:
LED.EXE is a Visual Basic control that emulates a light-emitting diode display, such as those found in digital clocks and meters. The user can either assign a Value to the LED, which will be displayed, or the user can actually assign a ValueMask to the LED, which allows for turning on individual segments of the LED. You can turn on any of the seven individual segments to allow you to display letters or numbers.
The project for this control can be downloaded from the Visual Basic Owner's site at http://premium.microsoft.com/download/vbasic/led.exe. Only registered users of Visual Basic can access this site.
The following is an excerpt from the readme.txt shipped with the sample that covers some of the technical details of this sample.
The following properties are available with the LED control:
segments that are on.
segments that are off.
around the control.
indicator is on or off.
on or off. Setting this to False will provide a "clear"
LED, with all segments being set to off. NOTE: This does
not effect the decimal; use the ShowDecimal to turn the
decimal off.
ValueIsMask is set to False, then the range of Value is 0
to 9. If ValueIsMask is set to True, then the range of
Value is 0 to 127.
be used as a single-digit to display on the LED, or that
Value is actually a binary-mask, indicating which segments
on the LED are to be "turned on".
This is a diagram of the "mask values" for the LED:
---1---
| |
| |
8 16
| |
| |
---2---
| |
| |
32 64
| |
| |
---4---
To create a "unique" display, just add up the numbers for the segments
you want turned on, set ValueIsMask to True, and assign the value to
Value. A few examples would be:
A 123
C 45
E 47
F 42
H 122
- 2
_ 4
Keywords : kbVBp500
Version : WINDOWS:5.0
Platform : WINDOWS
Last Reviewed: November 12, 1998