F Fastpho Member Licensed User Longtime User Apr 15, 2013 #1 Hello people of the forum: how I can do to make this color Visual Basic to B4A & H00B4846D & * thank you very much for your time
Hello people of the forum: how I can do to make this color Visual Basic to B4A & H00B4846D & * thank you very much for your time
mangojack Expert Licensed User Longtime User Apr 15, 2013 #2 Hi Fastpho .. does it have to be exactly the same.? Using RGB's for SteelBlue color is close ... maybe adjust RGB's B4X: Label1.Color = Colors.RGB(70,130,180) 'Steel Blue refer to the attached color chart for color variants Cheers mj Attachments Android Color Chart.zip 17.2 KB · Views: 232 Upvote 0
Hi Fastpho .. does it have to be exactly the same.? Using RGB's for SteelBlue color is close ... maybe adjust RGB's B4X: Label1.Color = Colors.RGB(70,130,180) 'Steel Blue refer to the attached color chart for color variants Cheers mj
F Fastpho Member Licensed User Longtime User Apr 15, 2013 #3 Convert color vb6 to B4A I want to use the same color can be? backcolor = &H00B4846D& thank you very much for your time Upvote 0
Convert color vb6 to B4A I want to use the same color can be? backcolor = &H00B4846D& thank you very much for your time
Erel B4X founder Staff member Licensed User Longtime User Apr 15, 2013 #4 Try: B4X: Backcolor = 0xFF6D84B4 Upvote 0
F Fastpho Member Licensed User Longtime User Apr 15, 2013 #5 Thank you for your response Erel is the color I wanted, what I wonder is how he got that result because I have several colors I want respect from my desktop application Thank you very much for your time. Upvote 0
Thank you for your response Erel is the color I wanted, what I wonder is how he got that result because I have several colors I want respect from my desktop application Thank you very much for your time.
Beja Expert Licensed User Longtime User Apr 16, 2013 #6 From first glance, I think Erel has one's-complimented your hex value. you can check, I am not sure Upvote 0
agraham Expert Licensed User Longtime User Apr 16, 2013 #7 No, the colour format is ARGB in Android and BGR in that VB6 example so Erel has rearranged the colour values and added full opacity, A = 0xFF. Upvote 0
No, the colour format is ARGB in Android and BGR in that VB6 example so Erel has rearranged the colour values and added full opacity, A = 0xFF.