Search found 5 matches

by gerhard zintl
Sun Mar 28, 2004 8:44 pm
Forum: newLISP in the real world
Topic: newlisp_8000rc1_win-tk.exe CRC 'BE754051'
Replies: 12
Views: 12707

newlisp_8000rc2_win-tk-111.exe

Hallo Lutz,
rc2 is working fine. Thank you very much indeed.
Gerhard Zintl
by gerhard zintl
Sun Mar 28, 2004 5:14 pm
Forum: newLISP in the real world
Topic: newlisp_8000rc1_win-tk.exe CRC 'BE754051'
Replies: 12
Views: 12707

newlisp_8000rc1_win-tk.exe CRC 'BE754051'

Hallo Lutz, I did as you proposed. New config-file created. TaskMgr showed just newlisp-tk.exe after running it. Same error message after entering '2'in newlisp-tk. error writing "sock164": connection reset by peer error writing "sock164": connection reset by peer while executing "puts $nlio $lastCo...
by gerhard zintl
Sun Mar 28, 2004 4:29 pm
Forum: newLISP in the real world
Topic: newlisp_8000rc1_win-tk.exe CRC 'BE754051'
Replies: 12
Views: 12707

newlisp_8000rc1_win-tk.exe CRC 'BE754051'

Hallo Lutz, I downloaded the new Version 8.0rc1 and installed it on my Windows XP Pro system without any problem. The documentation is correctly displayed after adapting the config-file. But trying to run a most simple Lisp statement (+ 1 2 3) results in an error. The log-file is as follows: error w...
by gerhard zintl
Thu Mar 25, 2004 4:17 pm
Forum: newLISP in the real world
Topic: newlisp-tk Entry widget does not display textvariable
Replies: 25
Views: 28060

comprehensive example for an entry widget:

Hallo Lutz,
I tested your 'entry example' and it runs like a charm.
Thank you very much for your prompt help.
I have some experience with Tcl/Tk and also Brent Welch's book fourth ed.
My problem was the data transfer connection between TK and newLISP
Gerhard Zintl
by gerhard zintl
Thu Mar 25, 2004 10:02 am
Forum: newLISP in the real world
Topic: newlisp-tk Entry widget does not display textvariable
Replies: 25
Views: 28060

Transfer of Variable-contents from Tk to newLisp

(define (test) (tk "if {[winfo exists .test] == 1} {destroy .test}") (tk "toplevel .test") (tk "set ::display {entry!}") (tk "wm title .test $::display") (tk "entry .test.e -width 30 -textvariable ::display") (tk "pack .test.e") ) I'm just starting to experiment with newLisp. How could you send back...