| Home > Programming notes > | History back Previous chapter Next chapter Print |
Web browser integration |
|
uEye ActiveX Manual Version 4.00
To integrate the uEye control into the Internet Explorer browser a HTML file containing some specific HTML commands have to be created (see below).
You have to insert an object tag and define the unique GUID of the uEye ActiveX control as a value of the Parameter CLASSID.
Make sure that running ActiveX controls is enabled in your browser settings.
HTML sample code
<HTML>
<HEAD>
<TITLE>IDS uEye ActiveX</TITLE>
</HEAD>
<BODY>
<CENTER>
<OBJECT ID="uEyeCam1" WIDTH=100% HEIGHT=100%
CLASSID="CLSID:A88F30FE-4C03-4E37-B6E4-ED9341093780">
<PARAM NAME="_Version" VALUE="65536">
<PARAM NAME="_ExtentX" VALUE="11289">
<PARAM NAME="_ExtentY" VALUE="8467">
<PARAM NAME="_StockProps" VALUE="0">
<PARAM NAME="InitBrightness" VALUE="75">
<PARAM NAME="InitContrast" VALUE="216">
<PARAM NAME="InitGamma" VALUE="106">
</OBJECT>
</CENTER>
</BODY>
</HTML>