Hi,
I am new to QB64 and InForm.
For a small project I would like to change the background color of a label depending on the data from the serial port. This needs to work without operator interaction.
I tried to do this via code in the __UI_BeforeUpdateDisplay subroutine. However Control(AlarmLabel).BackColor= _RGB32(x,y,z) changes the color only once. All following Control(AlarmLabel).BackColor= _RGB32(x,y,z) with a different color have no effect.
Is there another method to change the background color of a label at run time?