XColorPicker is a Activex Control help you to pick a color easilly.

[File Info]
File Version: 22.5.8167.42278
MD5: DEF880CE5D207733C8D63156060447C8
SHA1: CEB2C7D20BD8324E51E39DD50A9BEB6E500B3B91
CRC32: BB933E26

[22.5.8167.42278]
! Fix a problem that events not trigged.




[INSTALL]
1.Run Register.bat as administrator.
2.On the Special menu, point to Configure and then click Wizard/ActiveX Installation. The Wizard/ActiveX Installation dialog box appears. 
3.Click the ActiveX Control Installation tab. The ActiveX Control Installation property sheet appears. 
4.In the Installed ActiveX controls list, select XColorPicker to install in the Available ActiveX controls list and then click Install. 

[UNINSTALL]
1.On the Special menu, point to Configure and then click Wizard/ActiveX Installation. The Wizard/ActiveX Installation dialog box appears. 
2.Click the ActiveX Control Installation tab. The ActiveX Control Installation property sheet appears. 
3.In the Installed ActiveX controls list, select XColorPicker to remove from your application and then click Remove. A message appears asking you to confirm the deletion.
4.Run UnRegister.bat as administrator.


Please refer "Visualization : ActiveX Controls" in "Wonderware InTouch HMI Help" for more information.

[Demo App]
The demo app was made by Intouch 10.1


[Sample script]
DIM SelectColor AS INTEGER;
SelectColor = #XColorPicker1.SelectedColor;

DIM ColorR AS INTEGER;
DIM ColorG AS INTEGER;
DIM ColorB AS INTEGER;
DIM Result AS INTEGER;

ColorR = SelectColor & 0xFF;
ColorG = (SelectColor & 0xFF00) SHR 8;
ColorB = (SelectColor & 0xFF0000) SHR 16;

Result= ChangeWindowColor("Sample", ColorR, ColorG, ColorB);

