ls --color=auto is supposed to display directories in a different color, generally blue. Version 5.5 did this correctly. Version 6.0.0 does not display...
... Thanks for your quick checking of ls.exe issue in ch 6.0. The latest ls.exe supports windows 64 bit, however, the original ls.exe doesn't support 64 bit....
Hi, I've been reading the Ch and ChJava software, and it seems like what I need, but haven't found a single example online to verify (one that's interactive,...
In the previous version... grep -l XX ./.../*.h would perform a recursive directory scan for all .h files. Version 6.0 gives the message Ch: grep -l XX...
... Here is the output from my system - Windows XP sp2. Ch: chver Ch Standard edition, version 6.0.0.13511 (C) Copyright 2001-2008 SoftIntegration, Inc. ...
You may use the '-r' option for recursive searching as shown below. C:/ch/include> grep -l -r time.h * aio.h mqueue.h sched.h sys/acct.h sys/resource.h ...
... That works correctly, thanks... However, the file mask can only be *. If in your example, C:/ch/include> grep -l -r time.h * the file mask is changed to...
... C:/ch/include> grep -l -r time.h *.h aio.h mqueue.h sched.h time.h utime.h C:/ch/include> it looks that recursive ends up in searching the current...
Hello, If you wish to recursively search files that match "*.h" for a string, try this command: find -name "*.h" | xargs grep "time92;.h" This will search all...
CPlot plotType only seems to support a very limited set of colors for screen output, identified by an integer value. For example, the type PLOT_PLOTTYPE_LINES...
... Colors for different terminals and output might be different. You can try and find the colors of a specific terminal similar to Programs 23.15-23.18 in Ch...
... Ch standard itself is free for commercial. For Embedded Ch, you may check the link below. http://www.softintegration.com/products/sdk/embedch/purchase.html...
Now Ch 6.0 is available, still I can't find the mobile agent feature. I've installed the Ch-Student-Edition 6.0 and embedded Ch 6.0 and downloaded the MobileC...
Using embedch, have a license. When I run the application on the dev machine all is well, but on the client machine (after copying the toolkit\embedch folder...
I meant to say that I copied everything from the Ch\toolkit92;embedch folder to my applicationroot/embedch folder. So yes, my application/embedch folder has a...
... all embedded ch demo code uses the default directory related to CHHOME as run time environment. to distribute to run in a machine without ch standard...
If my code wasn't correct, then would this app work on the dev machine? Here is my ChOptionsInit code: (I do zeromemory the option prior to using it) ...
Tonight, I'll try this by uninstalling standard and embedded from my dev machine, only leaving these folders in the root of my application and step through the...
OK, I've uninstalled ch standard and embeded on my dev machine (but still have copies so that the libs and header files can be found. I've discovered that...
Not to keep replying to myself, but I want everyone to have as much information as possible: I looked at the 5.x folders (in myapplication root/embed) and...
Hopefully my final message for tonight... When I reinstall standard and embedch to c:\src92;ch, and then step into the line of code for Ch_Initialize, I do get: ...
In almost every situation, I see that ch.dll get's loaded as soon as you try to run a script. I wonder if that's related to my problem. thanks - bill ... build...
You normally can capture the error messages Ch Embedded Ch API's by redireting them using Ch_Reopen(), except for the error message from Ch_Initialize(). In...