Why do I not get the proper coloring? I get yellow text on green with a white background. I used a ltgray brush in the window definition. If I comment out...
... life of me see how it operates. I can display the debug button bar but nothing functions. What am I doing wrong? ... Both WinEd and SciEd have integrated...
Hi Frank, Blue is a Color Object which gives its address not its color. Try Color: Blue instead. (See Colors.f) Also it might be easier to use the On_Paint...
... with a white background. I used a ltgray brush in the window definition. If I comment out the fill of the rect I will get a ltgray window ... FillRect...
... -<snip>- Rather than passing 13 (!) separate parameters to your callback, why not package them up in a structure, and pass the address of the structure...
... Hi Jim, It's not me that requires so any parameters! One of the functions provided by the the DLL I am interfacing with supplies that many parameters to...
In the past I have wished for a way to temporarily slow down the compiler to a very sluggish pace so I can read all those messages. Don't you think a delay...
... compiler to a very sluggish pace so I can read all those messages. Don't you think a delay could be hot-patched into the compiler? ... Wouldn't it make...
... From: George Hubert To: win32forth@yahoogroups.com Sent: Wednesday, August 03, 2005 7:31 AM Subject: [win32forth] Re: Callbacks ... compiler to a very...
There is a constant defined in Forth: 'em_setpasswordchar' I see no explanation on how to use it. I was hoping to be able to use it in an edit box when I...
... explanation on how to use it. I was hoping to be able to use it in an edit box when I input a password. ... Actually it's not defined in Forth; it's in...
Inside my main object (window) I have the following: GetDC: self 30 10 t-buffer count textout: dc ReleaseDC: self Is this format correct? If I change the...
Hi Frank, GetDC: self returns the handle to the window's DC and ReleaseDC: self requires a handle. Use get-dc and release-dc instead (defined in window.f). ......
Hi Dirk. Could you please update the Win32Forth Project Group home page Downloads of current Win32forth developer release 6.11.03 snapshot CVS of June 12th...
... Hi frank, The following code uses a PassWordBox. \ TEST.FRM that uses a PassWordBox created by ForthForm \ and changed the textbox into a PassWordBox \...
Having an issue with getting my window to refresh / repaint. Here is my Paint routine it functions for most of my calls to Paint but not the 2 following this....
Having an issue with getting my window to refresh / repaint. Here is my Paint routine it functions for most of my calls to Paint but not the 2 following this....
... is my Paint routine it functions for most of my calls to Paint but not the 2 following this. msg4 and msg6 do not display but msg5 does on completion of...
This is the first public release of Reva - a small, cross-platform (x86 Linux and Windows) Forth, based on RetroForth. Reva is not ANS compliant, but does have...
Looks like the menu item File|Save Forth System... doesn't do the equivalent of fsave; I get various errors, depending on what's being saved at the time. -- ...
I have written a Win32for program and produced an exe file to make it stand alone. It works fine but when the exe file is called, a blank screen appears and I...
I just installed Version: 6.10.03 Build: 3 and I'm working my way through the help (F2: Getting Started). The doc says (from within SciEdit), "From the...
... being ... Are you using the latest version (after 5/8/5) since there was a bug in the code before that causing the top of stack to be wrongly consumed and...
... It may require ... init-console show-console doit ; ' main turnkey <name> as the code here requires the console, which is not normally initialised in a...
... Unfortunately communication between Win32Forth and the editor (either WinEd or SciEdit) relies on windows which sometimes goes awry on this (It works 99%...
Still having difficulity getting my editbox ( holds password) to display a single character ' * ' and not the characters typed in from the keyboard. Anyone...