Is there anybody who knows how to connect Delphi interface to lisp?
I am currently working Ai project which requires intense use of GUI interface.
It require almost all features and tools that we can think of in terms of GUI
interface (even voice recognition for future enhancement). First, I tried with
Allegro 3.02 interface builder, but I couldn't find how to access to the value
slot in editable text widget. Please help me on this....
Any help will be appriciated.
boyoung Song <·······@intergate.bc.ca> wrote in article
<············@carrera.intergate.bc.ca>...
> Is there anybody who knows how to connect Delphi interface to lisp?
You might try interfacing Delphi to a DLL that supports lisp functions.
For example LIBSIOD.DLL in http://people.delphi.com/gjc/winsiod.html
repl_c_string(" (set! x (cons 'a 'b)) "); /* example call to dll from
C */
This kind of thing would give you leverage if you are already
competent in Windows Delphi or C programming and don't want
to re-learn how to do it all again in Lisp.
In article <··························@gjchome.nis.newscorp.com>,
···@delphi.com says...
>
>boyoung Song <·······@intergate.bc.ca> wrote in article
><············@carrera.intergate.bc.ca>...
>> Is there anybody who knows how to connect Delphi interface to lisp?
>
>You might try interfacing Delphi to a DLL that supports lisp functions.
>For example LIBSIOD.DLL in http://people.delphi.com/gjc/winsiod.html
>
>repl_c_string(" (set! x (cons 'a 'b)) "); /* example call to dll from
>C */
>
>This kind of thing would give you leverage if you are already
>competent in Windows Delphi or C programming and don't want
>to re-learn how to do it all again in Lisp.
>
>
Thank you for your help. I was looking for the solution for my term project.
Four of us are working on this project and Delphi was one of options that we
considered for interface. We decided to use LISP interface instead because we
do not want to suffer more than we should. But after this project, I
personaly want to try more on Delphi interface with lisp engine. Thank you
again for your kindness.
Bo-Young Song...