Hi,
I have a Visual Basic application using Createobject("S criptControl") to convert a user input like 3+3 to 6. This worked perfect under Windows XP and even Windows 7 but on my new Windows 2008 Server (64 bit) it gives an error: Cannot Create ActiveX component. Should I register or refer anywhere ? Should I install anything ?
I hope anybody can help me !
Freddie
I have a Visual Basic application using Createobject("S criptControl") to convert a user input like 3+3 to 6. This worked perfect under Windows XP and even Windows 7 but on my new Windows 2008 Server (64 bit) it gives an error: Cannot Create ActiveX component. Should I register or refer anywhere ? Should I install anything ?
Code:
Dim SControl = CreateObject("ScriptControl")
SControl.language = "VBScript"
Totalfee = SControl.eval(TotalfeeTextBox.Text)
Freddie
Comment