Hi Yves, Why do you need to know that? Jos ... From: Yves Sent: Saturday, September 03, 2011 10:36 AM To: win32forth@yahoogroups.com Subject: [win32forth]...
15530
Yves
ysur2004
Sep 4, 2011 5:43 am
Hi George Thank you, it works as it should. Yves...
15531
Yves
ysur2004
Sep 4, 2011 5:51 am
Hi Jos We use Win32Forth in an industrial product (robotized system with camera that checks the surface polishing of orthopedic implants). Robot communication...
15532
dirkbuschde
Sep 5, 2011 5:50 pm
... IIRC it was removed because it was not useable at all, since switching to CAPS -ON badly broke w32f. At least a rebuild of the system wasn't possible. Dirk...
15533
George
georgeahubert
Sep 5, 2011 6:57 pm
... Surely you mean CAPS-OFF. Certainly rebuilding the system with it off would fail, since it wasn't written to be compiled in that mode. It can be used for...
15534
josv@...
josven2001
Sep 6, 2011 10:50 am
Hello, It seems there are the following inconveniences in the editor of the IDE: When you search a string in a source using <Ctrl+f> and you move the cursor ...
15535
Ezra Boyce
ezraboyce
Sep 6, 2011 1:18 pm
... Will take a look. -- Regards, Ezra...
15536
George
georgeahubert
Sep 6, 2011 3:47 pm
... Not always. It works for short files, also selecting a lot of text causes a crash even if it's not the all the file. Perhaps if the length is too long it...
15537
Ezra Boyce
ezraboyce
Sep 6, 2011 5:44 pm
On Tue, 06 Sep 2011 08:47:16 -0700, George <georgeahubert@...> ... Quick look from the office... Seems to be because the found text is highlighted in...
15538
josven2001
Sep 7, 2011 4:45 pm
Hi Ezra, Thanks for the update. The corrected workarounds help indeed. ... That is alright of course and it looks nice and clear as soon as you find the text....
15539
Ezra Boyce
ezraboyce
Sep 7, 2011 5:44 pm
... Further tests shows that this happens because of the "feature" added to allow selecting text by column or by line. If this is disabled everything works as...
15540
josv@...
josven2001
Sep 7, 2011 9:12 pm
Hi Ezra, Thanks again. Disabling line 1132 solved indeed the problem. I use <ctrl+f> a lot, so it is a great relief. An option in the preferences sounds fine...
15541
George
georgeahubert
Sep 8, 2011 11:49 pm
... I think I've solved it. The mode was being reset with each update so I've modified it to only update once for each change. As long as the mode isn't...
15542
Ezra Boyce
ezraboyce
Sep 9, 2011 3:45 am
... Nice going George. Works for me! ... Hmmm... ... -- Regards, Ezra [Non-text portions of this message have been removed]...
15543
josven2001
Sep 9, 2011 10:53 am
Hi George, Nice work! It solved indeed the problem. Many thanks. Jos ... [..]...
15544
josv@...
josven2001
Sep 9, 2011 2:18 pm
Hi, While extending the jukebox I got a bit confused with the current Paths.f ... \ *G Defines a directory search path. \n \ ** The first cell holds a pointer...
15545
George
georgeahubert
Sep 9, 2011 9:48 pm
... That just appears to be for a single file name not a path. The objects are just use it to PLACE the file name not for searching. ... The problem is that...
15546
josv@...
josven2001
Sep 9, 2011 10:25 pm
Hi George, Then I would like to vote for: Keep the new version with thread-safe searches and a global string Unless there is a better idea. Jos ... From:...
15547
Steve
jsgrahamus
Sep 17, 2011 1:57 pm
A group at work is already entering data into a Windows-based application. Now they are also supposed to be putting in much the same data into a 2nd...
15548
josv@...
josven2001
Sep 18, 2011 11:35 am
Hi Steve, I would give the first terminal a button Update or Save that saves the data in a database. Then a second terminal could update that data. Use...
15549
Steve Graham
jsgrahamus
Sep 20, 2011 8:45 pm
The app I need to scrape from is developed by another company and I cannot modify it. Thanks, Steve ... [Non-text portions of this message have been removed]...
15550
John Peters
brooklineari...
Sep 21, 2011 4:29 pm
Then you will need to give us more details of the other app. JP From: win32forth@yahoogroups.com [mailto:win32forth@yahoogroups.com] On Behalf Of Steve Graham ...
15551
George
georgeahubert
Sep 22, 2011 9:34 am
... What you need is the window handle of the app. The way to do that is to use the EnumWindows API function with a callback that gets the title and compares...
15552
Steve Graham
jsgrahamus
Sep 22, 2011 6:38 pm
... George, I think that's exactly what I want. Does Win32Forth have that API? I had not really thought of the 2nd option. Wow. Thanks. Steve [Non-text...
15553
Steve Graham
jsgrahamus
Sep 27, 2011 3:26 am
... I am trying to run/write a simple program to implement this (see below). I actually found a code segment based on SwiftForth with google. I'm getting an...
15554
George
georgeahubert
Sep 27, 2011 8:49 am
... That should be 2 CALLBACK: ALLWINDOWS COUNT-WINDOWS ; or for simplicity 2 CALLBACK: ALLWINDOWS ( 2 -- FLAG ) 1 HOW-MANY +! 1 ; would combine both...
15555
Steve Graham
jsgrahamus
Sep 27, 2011 2:15 pm
Thanks, George. Steve ... [Non-text portions of this message have been removed]...
15556
Steve Graham
jsgrahamus
Sep 27, 2011 5:30 pm
... George, This is what I got. I've checked it and it looks right. What do you think? Thanks, Steve ... VARIABLE HOW-MANY ok 2 CALLBACK: ALLWINDOWS ( 2 -...