Hi Jasper,
When trying to edit the SciLab Unit Operation I get the error "...Scilab Installation not Found. Unable to check HKEY_LOCAL_MACHINE\SOFTWARE\Scilab\LASTINSTALL"
All data in the registry seem to be there (LASTINSTALL does have a value).
I'm using COFE 3.2.0.3, Scilab 5.5.2, SciLAB UOP 2.0.8.
Any clues?
Kind regards,
Henk
SciLab Unit Operation edit error
Moderator: jasper
Re: SciLab Unit Operation edit error
Are you running x64 or x86 COFE?
Do you have x64 or x86 Scilab installed?
can you put the following lines in a .vba file and see what it says when you execute it?
Do you have x64 or x86 Scilab installed?
can you put the following lines in a .vba file and see what it says when you execute it?
Code: Select all
Set WS = CreateObject("WScript.Shell")
on error resume next
msgbox WS.RegRead("HKEY_LOCAL_MACHINE\Software\Scilab\LastInstall"),,"X64"
msgbox WS.RegRead("HKEY_LOCAL_MACHINE\Software\Wow6432Node\Scilab\LastInstall"),,"X32"
Re: SciLab Unit Operation edit error
Correction - that must be a .vbs, not .vba file
Re: SciLab Unit Operation edit error
Actually presuming this is the cause - please check the update posted now - 2.0.0.8. This should find the x64 version from COFE x86 and vice versa. There is no reason for this not to work as Scilab runs out of process in any case.
Re: SciLab Unit Operation edit error
Right on the spot!.
I indeed did run a mixed environment: COFE x86 with Scilab x64.
So obvious... Thanks!
Henk
I indeed did run a mixed environment: COFE x86 with Scilab x64.
So obvious... Thanks!
Henk
Re: SciLab Unit Operation edit error
Glad to hear it