Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to obtain the name of a function in a string?

Hi All,

Suppose I have the following string stored in a table,

Column AColor
ARGB(255,255,0)
B

RGB(255,0,0)

CRGB(255,255,192)

How to set a text box so that it will change it's background color according to the selected value in column A?

1 Solution

Accepted Solutions
maheshkuttappa
Creator II
Creator II

5 Replies
maheshkuttappa
Creator II
Creator II

check attached

jduenyas
Specialist
Specialist

Where are the definition of the colors for each of the letters? They are not in the load table.

Thanks

maheshkuttappa
Creator II
Creator II

its same RGB , what you have posted

Column AColor
ARGB(255,255,0)
B

RGB(255,0,0)

CRGB(255,255,192)
Not applicable
Author

Hi Josh,

Mahesh is using this page as the source. If you replace that part using a Load Inline statement, your application will work.

Color:

Load * Inline [

Column A, Color,

A, "RGB(255,255,0)",

B, "RGB(255,0,0)",

C,"RGB(255,255,192)"];

The split of Mahesh's answer is on the $ sign expansion in the Color Area dialog.

Not applicable
Author

Mahesh,

Thanks for your help. You have a cleared my  understanding.

Elim.