Error when trying to use a imported .net class.
Posted: Fri Apr 27, 2012 4:28 pm
I've used the import wizard in Jade to import the .net 'regex' class from System.dll
I'm using Jade 6.3.05 and I've written a small JadeScript to test the imported regex class
Although once i execute this I get the following errors:
and following prompt:
Anyone run into this before or know what I'm doing wrong? This is the first time I've imported anything from .net
I'm using Jade 6.3.05 and I've written a small JadeScript to test the imported regex class
Code: Select all
vars
regex : Regex;
begin
create regex transient;
epilog
delete regex;
end;
Code: Select all
Type: System Exception
Error Code: 1008
Entry point not in library
Source:
delete regex;
Code: Select all
jade.exe - Entry Point Not Found
The procedure entry point ??0DllDesc@@QAE@QB_W_N@Z could not be located in the dynamic link library JOMOS.dll.
OK