I am the group moderator for this Ch language group. Here is place where you can learn about the latest Ch activities and ask questions about how to use, ...
I have received email from Chandidas Deshpande: email: chumbhode at yahoo dot co dot in He teaches in India. I have encouraged him to join this group. A copy...
Chandidas, There are many Ch compatible IDEs linked at http://www.softintegration.com/products/thirdparty/. Many are freely available including Crimson Editor....
Hi all, Just joined this Yahoo Group hoping that maybe some of you can help me on the 'problem' I have. I have integrated chplot in my C++ project for making...
Harrald, Depending on what your intended output is it sounds like that's what's supposed to happen with gnuplot. When you call the "CPlot::plotting()"...
Matt, Thank you for your answer. I already specify "PLOT_OUTPUTTYPE_FILE", a type (.png in my case) and a name in the outputType. This all works fine and the...
Just bought the C++ graphical library (SIGL) two days ago. In the meanwhile I have been working with the evaluation version of SIGL for more than a month now. ...
I just wanted to send out a quick note welcoming all the new members to this group. Please send ideas on how to improve this group and what information best ...
Hi All! My name is Foltos (this is actually a nick name) and I just joined this mailing list. I started using ch a few days ago. I plan to use it as a test...
Foltos
foltos@...
Jun 8, 2005 9:20 am
12
... Ch itself has limited debugging capability. You may find _stop() and debug in C:/Ch/docs/chguide.pdf. As far as Embedded Ch is concerned, the debug...
Hi! Thanks for the help. Somehow I looked over those pages in the documentation before :). I am using ConTEXT editor as an ide. Any way it would be good if you...
Foltos
foltos@...
Jun 9, 2005 7:07 am
14
... That is great if you can help get it done. We will keep you posted of our progress on working out the debug APIs. Thanks so much. Tech support...
Hi Stephen, Thanks for helping me. I already configured ConText to work with ch. Foltos...
Foltos
foltos@...
Jun 10, 2005 7:36 am
17
I've only JUST stumbled upon ch and am quite excited about its possibilities. The only thing I was unable to determine about it however was whether or not it...
Hi there, I have a piece of program about TCP/IP communication. I couldn't create the socket. Any hint is helpfule to me. the attched file is the piece of...
Hi Zhaoqing, For TCP/IP communication using WinSock in Windows, a socket needs to be initialized first by calling WSAStartup(). Please take a look at WinSock...
Hello everyone I'm currently on a four day bicycle tour through South Dakota and Minnesota and will be a bit out of touch until I return. As the founder and...
bo, Thanks. It works. But I don't understand why should I have to initialize the socket? Does it mean the Windows just only supports the WinSock? If so, my...
Yes. Sockets in Windows and Unix are different. You can use #if _WIN32_ ...... #else ...... #endif in your program to deal with this problem. The sample socket...
Hi, I tried to embed Ch in our (huge) company project, but there were some errors during linking due to conflicts of ambiguous definitions of some "basic"...
... To use multi threading, you need to upgrade your compiler VC 6.0 to VC++.NET. You need thread-safe library from the latest VC compiler. If you don't use...
I'm interested in CH as a way to quickly write, test, and debug C programs before compiling to a finished product. So, my question is how feasible is it to do...
... All of your C code can run in Ch and be compiled in GCC. Ch is a just superset of C. All C code can run in Ch. Like many C compilers with extension to ISO...
I'm considering writing a large programming tutorial using CH as the programming language. This will be an intermediate level tutorial that will conclude by ...
Hi Ron, The project looks great and should be very useful. The contents of the tutorial appear well organized. I am interested in helping you out. Sqlite...
... Right. Once the memory gets messed up, it is an undefined behaviour in C/C++. The program may crash. when you define char *szDave="the cat" szDave is...