Hi
I want to access my dmx controller connected to my webserver. I use asp (not .net) and vbscript.
so far i use this script:
[code]<%@LANGUAGE=“VBSCRIPT” CODEPAGE=“65001”%>
Untitled Document <% Dim DMX Dim var1,var2,var3,var4 Dim DMXStart,DMXStop,DMXCount,DMXSData Set DMXStart=Server.CreateObject("k8062d.StartDevice") Set DMXStop=Server.CreateObject("k8062d.StopDevice") Set DMXCount=Server.CreateObject("k8062d.setChannelCount") Set DMXSData=Server.CreateObject("k8062d.setData")DMXStart()
DMXCount(4)
'Deze moet je gebruiken als je de server start
call DMXData(1,255)
call DMXData(2,0)
call DMXData(3,255)
call DMXData(4,0)
'Het updaten van de waardes
DMXStop()
'Deze moet je pas gebruiken als je de server sluit
%>
[/code]the DLL’s K8062D.dll, FASTTime32.dll are located in C:\Windows\System32 on the server
In this stage the page generates the following errorcode:
server object error ‘asp 0177 : 800401f3’
server createObject Failed
for the next line of code:
Set DMXStart=Server.CreateObject(“k8062d.StartDevice”)
[color=#FF0000]thanks for any help you can give![/color]
i’ve been looking for 4 years to make this application work, i’m getting pretty desperate