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

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

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 13025 - 13054 of 14480   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
13025
I have searched the Win32Forth(6.12) files but have not found what I am looking for so let me ask: Is there a windows call - funtion to set a timer / multiple...
Frank J. Russo
fjrusso
Online Now Send Email
Dec 3, 2007
6:17 pm
13026
I think I have found a way to partially do what I want. The user32.dll has a function to set a timer. SetTimer ( Hwnd, uint ID, uint elapsedtime(ms), timeproc ...
Frank J. Russo
fjrusso
Online Now Send Email
Dec 4, 2007
12:40 am
13027
... the ... You need to create a window to receive the message, and use it's Hwnd in the SetTimer call. The winhello.f demo has an example of this. George...
George Hubert
georgeahubert
Offline Send Email
Dec 4, 2007
9:04 am
13028
... the ... Test won't work as defined; it has to be a callback. The docs explain callbacks, giving examples. George...
George Hubert
georgeahubert
Offline Send Email
Dec 4, 2007
9:08 am
13029
... the ... The 3rd method of handling a timer is to set both the timerproc and hwnd to zero and then define ... -if dup @ 0= over cell + @ WM_TIMER = and if...
George Hubert
georgeahubert
Offline Send Email
Dec 4, 2007
12:02 pm
13030
... notice ... Oops! The 2nd line should be -if drop dup @ 0= over cell + @ WM_TIMER = and George...
George Hubert
georgeahubert
Offline Send Email
Dec 4, 2007
1:53 pm
13031
George the code works except it raises repeatitive recursion exception errors and then craps out. Never got to test or see if it responses properly with a...
Frank J. Russo
fjrusso
Online Now Send Email
Dec 4, 2007
3:21 pm
13032
... set. ... You need to drop the pmsg from the data stack if you don't use it; in other words your code should have the stack effect ( pmsg -- ). I did it...
George Hubert
georgeahubert
Offline Send Email
Dec 4, 2007
5:46 pm
13033
... -if drop dup @ 0= over cell + @ WM_TIMER = and if cr ." Got the Message" cr drop False ( -- f ) else true then then ; msg-chain chain-add TimerMsg Above is...
Frank J. Russo
fjrusso
Online Now Send Email
Dec 4, 2007
6:33 pm
13034
... the ... As I mentioned in another post, the word (or any word passed to windows so it can execute it) has to be defined as a callback, since windows...
George Hubert
georgeahubert
Offline Send Email
Dec 4, 2007
7:08 pm
13035
For anyone interest in this thread and might want an idea where I am headed here is a copy of some test code I generated. I will be using something along this...
Frank J. Russo
fjrusso
Online Now Send Email
Dec 4, 2007
8:44 pm
13036
... It might be intresting so look at events. They allow you to wait instead of looping. Jos...
Jos van de Ven
josven2001
Offline Send Email
Dec 5, 2007
10:20 am
13037
... am ... using ... functions. ... Timers don't loop; they post a message when the period has elapsed, which is dealt with by the message loop. Also if you...
George Hubert
georgeahubert
Offline Send Email
Dec 5, 2007
11:51 am
13038
Perhaps I am the only one still using WinView. But I am more than a little bit unhappy that one of the nice editing features that I added a number of years...
Robert Smith
bobsmith1930z
Offline Send Email
Dec 5, 2007
2:00 pm
13039
We also use it. It is a great feature that is missing form other non Forth programs. John A. Peters ... From: Robert Smith To: win32forth@yahoogroups.com ...
japeters@...
japeters1939
Online Now Send Email
Dec 5, 2007
4:41 pm
13040
In my first attempt to debug this problem, I find that TONE , formerly called BEEP , no longer works, at least on my computer running Windows-XP, Prof....
Robert Smith
bobsmith1930z
Offline Send Email
Dec 5, 2007
6:29 pm
13041
... Hi Bob, this future still works fine with Wined. Winview (released with win32forth 4.2) works fine also (Ctrl+C to copy, Ctrl+V to paste very usefull...
Bruno Gauthier
betonnage
Offline Send Email
Dec 5, 2007
9:18 pm
13042
Bruno, I am using Win32Forth version 6.11.10. WinEd version 3.02.00. The ordinary copy and past functions are probably OK. I am speaking of the block copy...
Robert Smith
bobsmith1930z
Offline Send Email
Dec 6, 2007
2:34 am
13043
... Hi Bob, I just made a new install of 6.11.10 version and the 3.02.00 coming with. BEEPs and all block copy as you mentionned just above works fine. (under...
Bruno Gauthier
betonnage
Offline Send Email
Dec 6, 2007
6:08 am
13044
Bruno, I have tried the uninstall/install, but the problems persist. I finally did get a printout from an interrupt Forth console window indicating that the...
Robert Smith
bobsmith1930z
Offline Send Email
Dec 6, 2007
10:12 am
13045
... Bob, you could use that trick ( extracted from wined.f (at the end after \s ) ... \s \ the above look's a bit strange but if you add this to your ...
Bruno Gauthier
betonnage
Offline Send Email
Dec 6, 2007
11:22 am
13046
First - The code: \ ... 8 + w@ case timer1 of True to thinkflag endof timer2 of True to Mind-Dump-Flag endof timer3 of ." Timer3" cr 0 to timer3 endof timer4...
Frank J. Russo
fjrusso
Online Now Send Email
Dec 6, 2007
12:46 pm
13047
Bruno, Still No Joy. I added the suggested code to Win32Forth.cfg . I then had to delete the space between the Prepend-home and the \ . Changed the cfg file...
Robert Smith
bobsmith1930z
Offline Send Email
Dec 6, 2007
2:45 pm
13048
... On 14 June 2006 I responded above to a post by FJR. Yesterday -- a year and a half later -- I finally tracked down and eliminated the bug in question. ...
AT Murray
mentifex
Offline Send Email
Dec 6, 2007
3:35 pm
13049
... Bob, the definition of (WinedDbg) at the end of wined.f needs to be changed to : (wined was launched before the pause-seconds) (pause-seconds gives times...
Bruno Gauthier
betonnage
Offline Send Email
Dec 6, 2007
3:54 pm
13050
Bruno, I can't get your code to work. I get an error at the second [else] . Trying to debug it further, there seems to be a problem at: ' wined since wined...
Robert Smith
bobsmith1930z
Offline Send Email
Dec 6, 2007
5:02 pm
13051
Figured it out. Return to Windows what was sent to you. ProcessMsg ( pmsg -- pmsg) false ( -- pmsg 0 ) ... message ... through...
Frank J. Russo
fjrusso
Online Now Send Email
Dec 6, 2007
5:05 pm
13052
... Bruno, another soluce is to remove the end of wined.f alls things after \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ \ create wined \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ then...
Bruno Gauthier
betonnage
Offline Send Email
Dec 6, 2007
6:08 pm
13053
setting this vallues in the top of wined.f should help making WinEdDbg work 0 value CreateTurnkey 1 value (WinEdDbg) \ Enable to debug by Dirk...
Dirk Busch
dirkbuschde
Offline Send Email
Dec 6, 2007
6:43 pm
13054
... If this doesn't work you should take a look at the sound options in the windows control panel. by Dirk...
Dirk Busch
dirkbuschde
Offline Send Email
Dec 6, 2007
6:49 pm
Messages 13025 - 13054 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