Hello,
I just downloaded this code and created a Custom Dialog colorpicker. Question is
what format is the int ColorResult ? and is there a way of getting the RGB information from this number ?
TIA.
I just downloaded this code and created a Custom Dialog colorpicker. Question is
what format is the int ColorResult ? and is there a way of getting the RGB information from this number ?
TIA.
B4X:
Sub btnSelectColor_Click
Dim cw As ColorWheelDialog
cw.Initialize
cw.ShowAsync(Me, "Select Color")
Wait For (cw) Color_Result(Success As Boolean)
If Success Then
Activity.Color = cw.ColorResult
End If
End Sub