FAQ

SmartCode ViewerX

Frequently Asked Questions


1. What dependencies are there? What version of the runtime do I need?

ViewerX control file doesn't require any Visual C++ runtime libraries.

2. What platforms are supported?

The SmartCode ViewerX control may be used under any Windows platform, namely Windows XP, Vista, Windows 7, Windows Server 2003, Windows Server 2008.

2. How to deploy ViewerX to my Web server?

Your web page hosting ViewerX might look like the sample below:
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html;>
		<script language="Javascript">
		function OnConnect() {
			window.ViewerX.Connect()
		}
		</script>
	</head>
	<body onload="OnConnect()">
		<object CLASSID="clsid:5220cb21-c88d-11cf-b347-00aa00a28331" VIEWASTEXT>
			<PARAM NAME="LPKPath" VALUE="scvncctrl.lpk">
		</object>

		<object id="ViewerX" height="328" width="662" classid="CLSID:62FA83F7-20EC-4D62-AC86-BAB705EE1CCD"
			CODEBASE="viewerx.cab">
			<param name="HostIP" value="192.168.1.139">
			<param name="Password" value="123">
		</object>
	</body>
</html>
Note first <object> tag entry. Do not delete it. This is Microsoft's license manager, which provides support for a licensed ViewerX control. It uses scvncctrl.lpk file to read information about ViewerX license.