En mode texte, on peut écrire des caractères ASCII 176, 177, 178 pour faire du +/- grisé, 219 pour zone pleine, 220 et 223 pour plein demi-taille (Pour les voir Alt + numAscii sur trois chiffres sous DOS).
Pour le mode graphique, il me semblait qu'il y avait (en Borland C DOS) une fonction C pour tracer une "barre" graphique, je sais plus son nom (y a "bar" dedans, je crois).
J'ai retrouvé (exclusivement DOS): bar
Syntax
#include <graphics.h>
#include <conio.h>
void far bar(int left, int top, int right, int bottom);
Description
bar draws a filled-in, rectangular, two-dimensional bar. The bar is filled using the current fill pattern and fill color. bar does not outline the bar; to draw an outlined two-dimensional bar, use bar3d with depth equal to 0.
The upper left and lower right corners of the rectangle are given by (left, top) and (right, bottom), respectively. The coordinates refer to pixels.
Return Value
None.
Message édité par Carbon_14 le 09-09-2002 à 15:13:51