11-07-2012 05:26 AM
Bonjour,
j'ai un projet qui consiste à la réalisation d'un banc de test avec une listbox.
Les étapes de test sont affichées dans la listbox au fur et à mesure de leur déroulement.
J'aimerais donc savoir comment faire pour modifier la couleur d'une seule ligne ( vert ou rouge ) afin de signaler si l'étape s'est déroulée correctement ou non.
Le changement de couleur doit se faire juste sur une seule ligne ( je n'ai rien trouvé dans les exemples ou dans l'aide )
Merci beaucoup
Loic.
11-07-2012 05:37 AM
Hi,
you may want to see here: you can use escape codes to change the foreground and background colors of characters in a list box.
They affect only the label in which they are embedded.
To change the foreground color, the code is \033fgXXXXXX where XXXXXX is a 6-digit RGB value specified in hex.
To change the background color, the code is \033bgXXXXXX where XXXXXX is a 6-digit RGB value specified in hex.