Vikas Typically, general purpose programming languages do not contain features that allow you to create buttons. Usually there is a windowing library that is...
Stephen. I just quickly looked over that page and I have one thing to say... OUTSTANDING. Many tutorial writers in the IT field forget the old axiom " A...
Good day. I have some functions in ch like this: string_t theFunc(string_t arg) { return arg; } The question: How can I call such functions from C code? I'm...
Dear Yuri, The function that you provided can be called in C as follows: string_t theFunc(string_t arg) { return arg; } int main(){ char *p; char *str =...
... For pow(3, 40), it exceeds the maximum value of INT_MAX defined in limits.h. pow(x,y) is a generic polymorphic function in Ch. It is for x^y such as x**y...
Thanks Stephen. But I mentioned not this. I'm embedding Ch in my program. There is described function in the script. So I can't call the function with...
... Calling Ch functions with argument or return type of string_t from Embedded Ch will be supported in the next release. It can be called as follows: #include...
... The maximum number of INT_MAX for int with 32 bits is 2147483647 pow(2, 40) will have a value of 1099511627776 which exceeds INT_MAX. The result is...
... sometime ... The chsqlite package is available at SourceForge at http://chsqlite.sourceforge.net now. If you have any question, please let me know. Bo...
I'm having difficulty installing and running ChExcel 1.0 with both Excel 97 and Excel 2003. Here are the machine/OS details: 1) Pentium III Windows 2000 Excel...
Hi, just wondering if there is a way to install and use ChExcel with other spreadsheet packages; in particular, is it possible to use it with OpenOffice.org...
... YOu are right. We missed to copy chexcel.xla to Office11/Library. chexcel-1.0.0.exe has just been updated in our download site. It should be OK now....
... At its current implementation, ChExcel only works with Microsoft Excel. We are not familiar with OpenOffice.org calc. If there are OpenOffice.org calc guru...
Hi, InfoSage Systems is into Software Development, Training and Staffing services. Weare well established with in USA and now our concentration isin to...
Hi, I installed the new version of ChExcel 1.0 and ChExcel.xla was placed in the Office11/Library directory. However, when I attempt to run any commands, I...
... The only thing needs to set is: Start Microsoft Excel. Select Tools from the menu toolbar, click Add-Ins. In the Add-In window check the ChExcel 1.0 box...
Hi, I have installed the ChExcel 1.0 add-in as you suggested, using the "Tools|Add-ins" menu. The build number for my version of Excel 2003 is: 11.6355.6408...
... Hi Stan, It seems that there are some dependant libraries missing in your computer. We have updated chexcel in our website. You can uninstall chexcel and...
Hi, Fantastic! Everything seems to work now, so whatever you did fixed the problem. I am very impressed with the software and am looking forward to learning...
I want to purchase the SIGL - C++ graphical library. I am developing an application in VC++ .NET and wanted to plot some 3D graphs of the data. I want the...
... SIGL is the C++ graphical library. It can be compiled with VC++.NET. What you want to verify is if .NET framework is able to call C++ library. you may...
FYI everyone - I will be on vacation all this week and won't be able to moderate this group during that time. Most likely no one will notice. I'll be back...
Hello I'm embedding ch in my application. Let's suppose I execute a script in one thread. It takes a lot of time so I want to cancel its execution from another...
[ Charset ISO-8859-1 converted... ] ... The excuting thread can be aborted by Ch_Abort(interp); This new API will be available next release. We will release...
Hi, I'm not sure what's required...multi-threading? My program is calculating some long variables in a very long and many nested for-loops. When a result is...
Hi, I want to calculate long integer..but seems that declaring signed long long int is not enough. I am working with integers greater than 10^10 Any help...
... How much greater than 10^10? The 'unsigned long long' type has a range of 0 .. 18446744073709551615 which is greater than 10^10. TMacD ~moderator~ ...
Dear Tim, You can use the Ch Multiple Precision Arithmetic package based on GNU Multiple Precison Arithmetic at http://chgmp.sourceforge.net . Stephen ... ...