Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - gerhard zintl

#1
Hallo Lutz,

rc2 is working fine. Thank you very much indeed.

Gerhard Zintl
#2
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 $lastCommand"

    (procedure "ProcessConsoleInput" line 28)

    invoked from within

"ProcessConsoleInput"

    (command bound to event)



V7.5.14 runs without any problem.
#3
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 writing "sock164": connection reset by peer

error writing "sock164": connection reset by peer

    while executing

"puts $nlio $lastCommand"

    (procedure "ProcessConsoleInput" line 28)

    invoked from within

"ProcessConsoleInput"

    (command bound to event)





Do you have any hint what went wrong?



Kind regards

Gerhard Zintl
#4
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
#5
(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 the content of the entry in ::display to newLisp?

Thanks in advance.

Gerhard Zintl