Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - WilliGrundmann

Pages: [1]
1
InForm Discussion / Re: Several Forms
« on: May 02, 2020, 03:39:43 am »
Hi TempbodiBasic,

Thank you for the help and the example.

I understand now that hiding and disabling controls allows to use the same space for different features.

Best Regards

Willi

2
InForm Discussion / Several Forms
« on: April 29, 2020, 03:13:24 am »
Hi,

Is there a way to have several forms, which can be controlled by a single QB64 program?

It would be good, if there was a way to switch between the forms - perhaps via a button or menu item.

Best Regards

Willi

3
InForm Discussion / Re: Label Background Colours
« on: April 15, 2020, 06:20:02 pm »
HI Phillippe,

Thank you very much for the advice. The background color works fine now.

Most of my programming is for embedded systems using Microchip processors. I do not get involved in PC based software very often. In the past I used QuickBasic and Visual Basic.

QB64 together with Inform may be a more efficient tool for small PC based applications.

Best Regards

Willi Grundmann

4
InForm Discussion / Label Background Colours
« on: April 15, 2020, 03:44:04 am »
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?


Pages: [1]