Re: messaging - or communicating between GUI's

2016-11-16 Thread god
Success! Cobbled a client/server solution in windows using Named Pipes. Gui's can now run as separate processes with events passing between them. Thanks all, especially Mr. Ka whose links were not only interesting, but they got me to a solution.

Re: Strange compiler bug when import critibits and nre

2016-11-16 Thread jangko
see [#4996](https://github.com/nim-lang/Nim/issues/4996)

Strange compiler bug when import critibits and nre

2016-11-16 Thread ziyu4huang
import sequtils import critbits import nre proc test() = var tb : CritBitTree[void] tb.incl "Abc" tb.incl "def" echo $( toSeq(tb.keys) ) > test.nim(9, 19) Error: undeclared field: 'keys' if you comment-out nre, it will be fine. Now, I use partial