I want to create a continuous form where a control displays either red or green blocks (or text) depending upon the value of a column in the form's data source.
Setting the control's property like background to a color based on the value doesn't work because that property for all displayed controls is changed, not just the one displaying the specific record.
An image also won't work for the same reason...you are changing the property of the control.
What I think might work is if I can put "text" (ASCII characters) into a text box that somehow include their color, but I can't figure out how to create the text strings. All I need at this time is red text and black text.
Anyone have a clue how to do this or if it's even possible?
The reason I want to do this is to create a form that displays the status of various locations and allows the user to click on a location to bring up a pop up form to change the status. Since you can't make a clickable control on a report (where the colors work fine) and I haven't been able to display the different colors on the form, I can't get a solution. (This is replacing a problematic VB application...and VB does enable creation of a form that works this way.)
Setting the control's property like background to a color based on the value doesn't work because that property for all displayed controls is changed, not just the one displaying the specific record.
An image also won't work for the same reason...you are changing the property of the control.
What I think might work is if I can put "text" (ASCII characters) into a text box that somehow include their color, but I can't figure out how to create the text strings. All I need at this time is red text and black text.
Anyone have a clue how to do this or if it's even possible?
The reason I want to do this is to create a form that displays the status of various locations and allows the user to click on a location to bring up a pop up form to change the status. Since you can't make a clickable control on a report (where the colors work fine) and I haven't been able to display the different colors on the form, I can't get a solution. (This is replacing a problematic VB application...and VB does enable creation of a form that works this way.)