When I use a call with (silent ...) one time with the DLL, I get no more any return.
Is it a bug?
It should only works for the one call!
In TK it works like this:
> (print "Test")
Test"Test"
> (silent(print "Test"))
Test
>(print "Test")
Test"Test"
>
I tired this function to do what I want.
;function for print strings without return-value
(define (nb-print nb_str)
(silent(print nb_str))
)
But works also only on the first call.
when using 'silent' in DLL mode it never gets reset, this will be fixed in the next development version.
Lutz
Lutz,
Thanks for the quick info.
This will allow another cool feature for the interface.