Hello, How can I run a script from Ch shell in such a way that variables and functions defined in the script are still available for interactive use from the...
1257
Tech Support
one2001boy
Jan 27, 2012 8:22 pm
... You may find the answer from the link below: Q: How to load a C/Ch/C++ script program and call its functions from Ch shell command prompt interactively ...
1258
pewdut
Feb 2, 2012 5:07 pm
Hey, I have a Windows XP computer, with Visual Studio 2010 Ultimate. I have installed SIGL and i am trying to build and execute your demo Program 2.1: A simple...
1259
Tech Support
one2001boy
Feb 3, 2012 2:45 am
Hi Pewdut, ... the current sigl 3.0 version should work with vs 2010. do you use sigl 3.0 or 2.9? if you go to c:\silib92;lib directory, are you able to find the...
1260
pewdut
Feb 3, 2012 3:38 pm
... Me agian.. :) I reinstalled the application and installed SIGL 3.0, but i still could not build my own project but i could build your demo. But when...
1261
pewdut
Feb 3, 2012 3:40 pm
... And i have those files in my directory but they are not as big as you have written. Love Pewdut...
1262
Tech Support
one2001boy
Feb 5, 2012 8:24 pm
Hi Pewdut, ... the above files are for win 64 bit. you use win 32 bit and the file size might be different. ... Symbols loaded. ... PDB file ... the PDB file ...
1263
hdmendozap
Mar 26, 2012 7:15 pm
We want to try Embedch for a scripting functionality in one of our projects but when i try to run the test.exe from the \demos92;embedch92;VC\MD\VC6.0\Test.dsw i...
1264
Tech Support
one2001boy
Mar 26, 2012 8:44 pm
... Hi, For embedded ch, it requires Microsoft Visual Studio .NET 2008 (VC++ 9.0) or above for Windows 64-bit or Microsoft Visual Studio .NET 2005 (VC++ 8.0)...
1265
student5068
Mar 27, 2012 9:50 pm
Hello, I recently purchased the Velleman k8055 USB interface board. I have installed ChIDE - student edition, installed the software provided by...
1266
Tech Support
one2001boy
Mar 28, 2012 5:28 am
... If you compile the code output.cpp or K8055_Demo.cpp into binary such as output.exe or K8055_Demo.exe, does it work? Best, Tech support...
1267
student5068
Mar 28, 2012 6:31 pm
So I tried to compile the .cpp files using Tools-->Compile to no avail, I keep getting an error message that says there is some undefined variable 'cl' but...
1268
Tech Support
one2001boy
Mar 28, 2012 6:38 pm
... do you use windows or linux? You can check the link below about how to setup compiler to work with Ch shell or ChIDE. ...
1269
yundorri
Apr 19, 2012 4:14 pm
Hi there, I am the novice of embedded ch user. I've started embedded ch according to the embedch.pdf All was ok before meet following error message, ...
1270
Tech Support
one2001boy
Apr 20, 2012 3:06 am
Hi Yundorri, ... We tried in redhat 5 32 bit and cannot repeat the problem. do you use 32 or 64 bit? can you verify if the downloaded package matches your OS. ...
1271
yundorri
Apr 21, 2012 3:00 am
I think I found what was problem. I compared the Makefile in chapter1 directory and what I made the difference was "LFLAG=-rdynamic" -rdynamic flag was...
1272
yundorri
Apr 21, 2012 3:00 am
Dear Ch Tech support team. Thanks for your reply. My OS is 32bit RHEL5 as follows. and installed chstandard-7.0.0.linux2.4.20.intel plus...
1273
Tech Support
one2001boy
Apr 23, 2012 3:04 pm
... The flag is for solaris to use. Thanks for your suggestion. we will update the pdf documentation in our next build. Best regards, Tech support...
1275
yundorri
Apr 26, 2012 5:25 am
Hi there, I want to implement 'default parameter' feature with embedch 7.0.0 I red "http://www.softintegration.com/support/faq/generalprog.html" how to...
1278
Tech Support
one2001boy
Apr 27, 2012 7:42 am
... va_count() is for the code in ch space. /usr/local/ch7.0.0/include> grep va_count * stdarg.h:#define va_count(list) __va_count(list) ...
1279
yundorri
Apr 27, 2012 2:28 pm
I solved below problem as like you mentioned. (^_^) It was similar with Variable Length Arguments method. Thank you very much!! ...
1280
yundorri
May 3, 2012 2:35 am
Hello, I'm using embedch-7.0the embed ch guide says the compile and linking must use "ch dlcomp" and "ch dllink". but I want to use "new" operation in my cpp...
1281
yundorri
May 3, 2012 4:44 am
I resolved the "new" operator problem by adding"cplusplus" flag to "ch dlcomp" and "ch dllink" like as followings: ch dlcomp libtlfunc.dl cplusplus ulsk.cpp...
1282
suninyoureye
May 3, 2012 2:13 pm
Hi, I've just downloaded and installed the student version of Ch (version 7.0). I'm using xubuntu 12.04. Whenever I try to run code using a plotting command I...
1283
yundorri
May 3, 2012 2:13 pm
I am sorry. I was lazy to find information from manual page. I found those information about dlcomp and dllink from chsdk.pdf Thank you. Have a niceday :-)...
1284
Tech Support
one2001boy
May 3, 2012 9:23 pm
... You need to install libjpeg in your operating system. Google search showed the link below about how to get it done. ...
1285
yundorri
May 8, 2012 2:28 am
Hi, everyone! First of all, thanks to Ch Tech team to make this awesome tool for us. I'am using embedch-7.0 and now I am facing the running time issue.I ...
1286
Tech Support
one2001boy
May 8, 2012 7:35 am
Hi, scripting is slower than compiled binary code especially when running loop. To have a better performance, it is better to create a binary function for the...
1287
yundorri
May 12, 2012 5:18 am
Hi there~ I'm using embedch-7.0 and my project consists of three files. testpgm.cpp, test_routine1.cpp, test_routine2.cpp these are the Ch spaced code. First...
1288
Tech Support
one2001boy
May 12, 2012 5:33 pm
The error indicates that the code fragment were included multiple times. You may put the code inside a header file with the protection code #ifndef XXX #define...