Search the web
Sign In
New User? Sign Up
win32forth
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 13993 - 14022 of 14480   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
13993
I have developed George's idea further by separating the calculation of ScrollRange from the On_Paint: method and simplified the new method UpdateScrollRange:...
rodoakford
Offline Send Email
Nov 5, 2008
11:13 am
13994
... Hi Rod, The speed looks fine. Thank you for giving it some attention. An attempt to execute 3 times WORDS after 0 to SCREENDELAY failed, since Forth was...
Jos van de Ven
josven2001
Offline Send Email
Nov 5, 2008
9:33 pm
13995
... calculation ... method ... (if the ... of a ... Hi Jos, I have been doing some experiments. Start Win32For.exe and just type WORDS then soon press 0 on the...
rodoakford
Offline Send Email
Nov 5, 2008
11:41 pm
13996
Hi all, How do I access (get:, put:) an ivar (declared with int) in an object created with new> from within a colon definition? I cannot find an example in...
dixonglennb
Offline Send Email
Nov 7, 2008
11:55 pm
13997
... object ... this ... The problem is that the address object address has to put into a value and that value used with the dotted notation. If the value is ...
George Hubert
georgeahubert
Offline Send Email
Nov 8, 2008
12:07 am
13998
Is there a problem with the way Win32 Forth reads files via the Windows OS? My reason for asking is the following strange problem. Having developed an...
yipperoo
Offline Send Email
Nov 9, 2008
11:05 am
13999
Your problem is that you brought files over from a different operating system, and that other operating system uses a different line-end terminator than...
Thomas Zimmer
zforth
Offline Send Email
Nov 9, 2008
2:44 pm
14000
... All development was done under Windows XP so it never ocurred to me that there could be a problem with line terminators, I would have expected all Windows...
yipperoo
Offline Send Email
Nov 9, 2008
5:11 pm
14001
Also Notepad++ can convert between 'windows' and 'unix' line termination conventions. Mark ________________________________ From: Thomas Zimmer...
mark wills
markrobertwills
Offline Send Email
Nov 9, 2008
5:56 pm
14002
... different ... line ... used ... to ... the ... then ... able ... it came ... It is supposed to handle unix terminated files (in V6) but there's obviously a...
George Hubert
georgeahubert
Offline Send Email
Nov 9, 2008
6:02 pm
14003
... And the Win32Forth IDE, too (see "Options>Line endings") ... Dirk...
Dirk Busch
dirkbuschde
Offline Send Email
Nov 10, 2008
4:21 pm
14004
Is it possible to program a timer in Windows NT? The goal is to let the execution of a forth word wait for a specific moment in time, but it has to wait in the...
jodekoninck
Offline Send Email
Nov 17, 2008
7:26 pm
14005
Hi Jo There are 2 ways: 1) Define a number of threads in which one thread or more wait for a number of seconds. See taskdemo.f for the use of threads. Waiting...
Jos van de Ven
josven2001
Offline Send Email
Nov 17, 2008
9:46 pm
14006
I succeeded in adapting de code from Winhello.f and changed the respons to WM_TIMER but I encountered the following problem: The code of On_Paint: has a local...
jodekoninck
Offline Send Email
Nov 18, 2008
4:55 pm
14007
... Just a guess here, but it could be that string$ does not return a counted string, only an address. Would this fix the problem? string$ count temp$ +place -...
Thomas Dixon
phenomenaltom
Offline Send Email
Nov 18, 2008
7:13 pm
14008
... calculation ... method ... (if the ... of a ... I have optimised the code in CommandWindow.f while fixing the problems with having a large number of lines...
rodoakford
Offline Send Email
Nov 19, 2008
1:59 pm
14009
... The new version also solved the problems with pong :-) The optimized code does a fine job. Also less flickering. (Less important note) I was surprised to...
Jos van de Ven
josven2001
Offline Send Email
Nov 19, 2008
8:39 pm
14010
There are problems with some of the messages sent to Combo Boxes since SendMessage:SelfDrop was changed to use SendNotifyMessage rather than SendMessage. It...
rodoakford
Offline Send Email
Nov 20, 2008
4:36 pm
14011
... NOT ... Most peculiar. According to the windows docs SendNotifyMessage should behave identically to SendMessage where the window object was created by the...
George Hubert
georgeahubert
Offline Send Email
Nov 21, 2008
8:30 am
14012
How stupid of me, that was indeed the problem. Thanks, Jo ... string...
jodekoninck
Offline Send Email
Nov 22, 2008
11:08 am
14013
Perhaps the latest console has a problem when a turnkey or the IDE is started. At the start the mouse blinks for a moment and then nothing happens. Only after...
Jos van de Ven
josven2001
Offline Send Email
Nov 22, 2008
9:33 pm
14014
... happens. ... Hi Jos, It has taken a while to fix this problem properly as it does not show up on XP, only on Vista. The GdiObjects created by new> (font ...
rodoakford
Offline Send Email
Nov 27, 2008
6:02 pm
14015
... Hi Rod, Thank you, The bug has indeed been solved. I am glad you could figure it out. ... That is right I removed the sidebar disabled the Windows Search...
Jos van de Ven
josven2001
Offline Send Email
Nov 28, 2008
8:44 pm
14016
I tried to install the current stable version of Win32Forth and it seems to crap out before it is done. I am installing version 6.12. I have administrator...
Rick Collins
gnuarm
Offline Send Email
Dec 5, 2008
9:45 pm
14017
Hi Rick, I can not produce the same error on my vista. Possible solution: De-install Win32Forth. Download the pack again from ...
Jos van de Ven
josven2001
Offline Send Email
Dec 5, 2008
10:17 pm
14018
I was looking at winser.f and I see a word -z"- I found it in the glossary, but it has no definition. Using "see" doesn't really tell me much either. How is...
Rick Collins
gnuarm
Offline Send Email
Dec 6, 2008
12:54 am
14019
I am not sure about -z"-, but I can tell you that the z means zero (or null) terminated string, so z" when used inside a definition, will return a null...
Thomas Zimmer
zforth
Offline Send Email
Dec 6, 2008
2:30 am
14020
More specifically, ... test will display something like hex(t), hex(e), hex(s), hex(t), hex(0). Sorry can't remember the hex values for "test" Tom ... ...
Thomas Zimmer
zforth
Offline Send Email
Dec 6, 2008
2:34 am
14021
Ok, that makes sense. When I wrote -z"- I meant z", I was using the dashes as delimiters. I understand the code now. When I tried to reverse engineer it I...
Rick Collins
gnuarm
Offline Send Email
Dec 6, 2008
3:15 am
14022
... The error messages for struct.f all indicate that an older version (i.e. the one supplied with V6.10.xx) so I think that V6.10.xx needs to be uninstalled...
George Hubert
georgeahubert
Offline Send Email
Dec 7, 2008
9:38 am
Messages 13993 - 14022 of 14480   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help