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

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

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 14341 - 14370 of 14370   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
14341
Hi, I am reasonably confident with old dos-based Forth (HSForth) but realise it is now time to start playing with these 'window things'. I am trying to learn...
TONY JONES
bty496646
Offline Send Email
Jun 22, 2009
7:13 am
14342
... Hello, First a quick answer to Dennis : Indeed RS485 and RS232 are very similar. Windows XP will not allow direct hardware access as is possible with DOS...
Camille Doiteau
camilleforth
Offline Send Email
Jun 22, 2009
9:16 am
14343
Hi,   I worked with RS485 for several years using Forth. There is no difference in handling than using RS232-Modem. The only thing is you have to have a...
Dirk Bruehl
dirk_bruehl
Offline Send Email
Jun 24, 2009
6:47 pm
14344
Hi Toni, I always preferred to stay with FORTH, and I do Windows-Projects without a need of Windows Programming Knowledge. I use visualFORTH, see...
Dirk Bruehl
dirk_bruehl
Offline Send Email
Jun 25, 2009
3:41 am
14345
Hi Tony,   (A) You can create forms|objects in forth-form and see how the resulting code is created. Its very simple but clever and as you understand a...
P G
psg0912
Offline Send Email
Jun 25, 2009
10:34 am
14346
Hi Dirk Will the visualforth patch install on the latest version of win32forth - 6.13.03 ? Thanks John...
chengmuk
Offline Send Email
Jun 25, 2009
2:23 pm
14347
Hi John, At http://sourceforge.net/project/showfiles.php?group_id=55294 Win32forth V6.13.00 is noted as developer release, and Win32forth V6.12.00 is noted as...
Dirk Bruehl
dirk_bruehl
Offline Send Email
Jun 25, 2009
9:15 pm
14348
Hello, I'm trying to install visualforth on Windows XP. In the visualFORTH0111.bat I had to modify the XCOPY on line 24 by c:\windows\system32\XCOPY to make it...
thierryp34
Offline Send Email
Jun 29, 2009
2:27 pm
14349
Hi Thierry, VisualForth seems to be build on Win32Forth. So I would recommend to you to install Win32Forth first and then follow the manual of VisualForth for...
Jos v.d.Ven
josven2001
Offline Send Email
Jun 29, 2009
6:34 pm
14350
... Von: thierryp34 <poidras@...> Betreff: [win32forth] visualforth console.f An: win32forth@yahoogroups.com Datum: Montag, 29. Juni 2009,...
Dirk Bruehl
dirk_bruehl
Offline Send Email
Jun 29, 2009
6:35 pm
14351
Hi Jos, Thanks for your supporting comment! I appreciate it very much! Indeed - and of course - visualFORTH is build on Win32Forth. It is "only" a patch to...
Dirk Bruehl
dirk_bruehl
Offline Send Email
Jun 29, 2009
9:05 pm
14352
Hello, and thank you very much for your answer. It seems that as I used the "c:\windows\system32 \XCOPY " once now XCOPY alone is recognized ! I've installed...
thierryp34
Offline Send Email
Jun 30, 2009
7:35 am
14353
... Von: Dirk Bruehl <dirk_bruehl@...> Betreff: AW: Betrifft: [win32forth] visualforth console.f An: "thierryp34" <thierry.poidras@...> CC:...
Dirk Bruehl
dirk_bruehl
Offline Send Email
Jun 30, 2009
6:27 pm
14354
Hello Dick, Thank you for your clear answer. I just removed the "C:\Program Files\visualFORTH" directory and ran the visualFORTH0111.bat file and that's it !...
thierryp34
Offline Send Email
Jul 1, 2009
6:56 am
14355
Hi Thierry, now I looked through all your emails and I guess the problem is that there is some delay until the emails we send show up at Yahoo-Groups. I was...
Dirk Bruehl
dirk_bruehl
Offline Send Email
Jul 1, 2009
8:59 am
14356
Hello Thierry, I am happy to read it worked. If you are not familiar with Forth, you will learn it soon. It is easy to learn and you will enjoy it. The...
Dirk Bruehl
dirk_bruehl
Offline Send Email
Jul 1, 2009
9:38 pm
14357
Hi,   I have a text file which consists of a number of lines. Each line has 7 numbers which are tab-separated. I read a line from a file into a buffer in...
psg0912@...
psg0912
Offline Send Email
Jul 6, 2009
6:45 pm
14358
... Hi Prad, ... it standard. I've done some similar stuff to what your trying to do. Here is a snippet of (ugly and verbose) code that you may be able to...
Thomas Dixon
phenomenaltom
Offline Send Email
Jul 6, 2009
7:41 pm
14359
Hi Prad, When I have to read a file with numbers, I do the following: I define everything I do not need as a dummy word, then I load the file, and all numbers...
Dirk Bruehl
dirk_bruehl
Offline Send Email
Jul 6, 2009
9:08 pm
14360
Try this No guarantee. I am not hte programmer but I have access to him. John A. Peters ... \ $Id: Getat.f,v 1.2 2009/04/17 22:23:48 brookline Exp $...
japeters@...
japeters1939
Offline Send Email
Jul 7, 2009
3:59 am
14361
Hi Thomas,   I used >number because its listed in the ANS standard word list. When I started off I had a vague idea of writing a wrod similar to the...
P G
psg0912
Offline Send Email
Jul 7, 2009
10:34 am
14362
Hi Dirk,   The data is in a file created in excel. The file is then saved as text. In excel you can save as comma separated values or tab-separated. The one I...
P G
psg0912
Offline Send Email
Jul 7, 2009
10:43 am
14363
Hi John,   It will take me a while to work through this one. One thing that does come to mind is that :: #line.bytes  #line.addr  cursor-line  cursor-col ...
P G
psg0912
Offline Send Email
Jul 7, 2009
10:52 am
14364
... Try ... -IF 2DUP 09 SCAN DUP>R -IF 1- SWAP 1+ SWAP THEN 2SWAP R> - EVALUATE >R RECURSE R> ELSE 2DROP THEN ; which should read any number...
George Hubert
georgeahubert
Offline Send Email
Jul 7, 2009
3:31 pm
14365
... Just a question to the OP, would it make sense to read and process your numbers one at a time rather than stacking them? I'm not up with my Forth enough...
Rick Collins
gnuarm
Offline Send Email
Jul 7, 2009
3:48 pm
14366
Hi John, It will take me a while to work through this one. One thing that does come to mind is that :: #line.bytes #line.addr cursor-line cursor-col ...
japeters@...
japeters1939
Offline Send Email
Jul 7, 2009
3:51 pm
14367
... <snip>> > ... Again to the OP, but you are right Rick. As pointed out by others in this thread, you can easily blow up the stack if your spreadsheet ...
Dennis Ruffer
DaRuffer
Offline Send Email
Jul 7, 2009
9:39 pm
14368
I have been able to adapt the solutions given previously. Thomas's one was easier for me to understand. George's one was neat  ( not something I would have...
psg0912@...
psg0912
Offline Send Email
Jul 8, 2009
11:58 am
14369
Hi,   I typed in the following and --> shows what I get. Scan does what I expect, but skip seems to do nothing. What does skip do ?    (1) s" 23 45 12" 32...
P G
psg0912
Offline Send Email
Jul 8, 2009
1:51 pm
14370
... skip ( addr len char -- ) will skip all characters that match with char and then stop. Your example does nothing because the first character is not 109...
Thomas Dixon
phenomenaltom
Offline Send Email
Jul 8, 2009
4:02 pm
Messages 14341 - 14370 of 14370   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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