Search the web
Sign In
New User? Sign Up
ch_language · Ch Language
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 559 - 589 of 1027   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
559
The download from 4-27 works. Thanks! -Tom...
Tom NeSmith
twnesmith
Offline Send Email
Apr 2, 2007
2:45 pm
560
Hi All, I am using SciTe C++ editor along with CH. When I declare a variable as "double" or (even "long double") in C++, it is happily supposed to take the...
Vivek
vivek_coer
Offline Send Email
Apr 5, 2007
7:32 am
561
... How do you input your value to a variable of double type? For example, you may use double x; scanf("%lf", &x); Note that scanf("%f", &x); will make x equal...
groupsupport@...
one2001boy
Offline Send Email
Apr 5, 2007
3:10 pm
562
Is there any possibility to clear a variable to use it again? For instance Matlab has the clear statement. (clear cleans up the screen in Ch.) Is there any...
bblochl_2
Offline Send Email
Apr 6, 2007
8:42 pm
563
... Use int i remvar i to remove variable i in command mode. Use #pragma remvar(i) in a program. You may find more at ...
groupsupport@...
one2001boy
Offline Send Email
Apr 7, 2007
2:22 am
564
Hello, I just started on this list and with Ch. I'm new to Ch but not to C/C++ programming. I just ported a C application made of several files to Ch. Had to ...
Tomás Sobota
tksobota
Offline Send Email
Apr 7, 2007
1:11 pm
565
Running XP and Ch Version 5.5.0.13221 I have a few commands(dot commands), .ch extensions, and a number of functions (.chf) called by each command. I would...
MiltRat
Offline Send Email
Apr 8, 2007
2:28 am
566
... You may use system variables declared by the type qualifier __declspec(global). For example, __declspec(global) int s_var1, s_var2; Tech support...
groupsupport@...
one2001boy
Offline Send Email
Apr 8, 2007
3:32 pm
567
... Does the demo program /usr/local/ch/demos/lib/libc/math/hypot.ch work? Tech support...
groupsupport@...
one2001boy
Offline Send Email
Apr 8, 2007
3:37 pm
568
... I have an include file with: #ifndef _GLOBALVARS_ #define _GLOBALVARS_ __declspec(global) int s_var1, s_var2; #endif Command file 'tglobal.ch' is #include...
MiltRat
Offline Send Email
Apr 8, 2007
4:02 pm
569
... manipulated ... Additionally --- I created a dot command in the _chrc file as... alias("tglob", ". tglobal"); alias("tglob1", ". tglobal1"); tglob produces...
MiltRat
Offline Send Email
Apr 8, 2007
4:09 pm
570
Hello, Thanks for your reply. No, I just tested hypot.c and it doesn't run either. The output is: Error: dlopen(): /usr/local/ch/dl/libmath.dl: Undefined...
Tom Sobota
tksobota
Offline Send Email
Apr 8, 2007
6:17 pm
571
... number of ... Solved - The declspec declarations were put into the _chrc file. If put there, the code behaves as expected. If put anywhere else, it...
MiltRat
Offline Send Email
Apr 8, 2007
10:18 pm
572
[ Charset ISO-8859-1 converted... ] ... You may start a new Ch shell before running commands to see the error message. The error messages when runing your code...
groupsupport@...
one2001boy
Offline Send Email
Apr 9, 2007
6:49 am
573
... This might be the reason. Ch for FreeBSD is compiled in a 32bit machine. Not sure how to run a program compiled in 32 bit machine for FreeBSD run in 64 bit...
groupsupport@...
one2001boy
Offline Send Email
Apr 9, 2007
6:50 am
574
Yes, I agree with you that executing Ch in a 64 bit FreeBSD box might be a borderline case just now. Anyway I can do more tests, if you need. Eventually Ch...
Tom Sobota
tksobota
Offline Send Email
Apr 9, 2007
7:03 pm
575
... Thanks for your help. Yes. We will do the porting if the demand to run 64 FreeBSD is picked up. ... The un-commonly used feature of declaring a union...
groupsupport@...
one2001boy
Offline Send Email
Apr 10, 2007
12:00 am
576
Yes, I agree that a union cast such as this is difficult to read. It is not mine, but part of an open-source library. I simplified it more or less in the way...
Tom Sobota
tksobota
Offline Send Email
Apr 10, 2007
8:02 am
577
hi, how does one specify case insensitivity in matching in chpcre? i tried the PERLesque "/..../i" but it treats it like part of the pattern. i looked at the...
Jan Theodore Galkowski
disneylogic
Offline Send Email
Apr 10, 2007
5:43 pm
578
found it! see http://www.ugcs.caltech.edu/manuals/libs/pcre-6.4/pcreapi.html#SEC13 you specify PCRE_CASELESS as the option (solo or combined) of the ...
Jan Theodore Galkowski
disneylogic
Offline Send Email
Apr 10, 2007
8:30 pm
579
... Ch normally will not crash and gives a descriptive error message. If you can package your code with README inside to show how to run the code and...
groupsupport@...
one2001boy
Offline Send Email
Apr 12, 2007
7:05 am
581
Sorry, I didn't mean to say that Ch crashes. What crashes is my program in Ch. Or, to put it better, Ch refuses to execute my program further from a given...
Tom Sobota
tksobota
Offline Send Email
Apr 12, 2007
10:49 am
582
I am running Standard edition, version 5.5.0.13221 on windows XP. I reproduced the Student class from the User's Manual, Ch. 19. I have put the class in both...
MiltRat
Offline Send Email
Apr 14, 2007
3:33 pm
583
... Three files prog.cpp, student.h, Student.cpp attached show how to run a C++ proram in Ch. Header file student.h contains the class definition. File...
groupsupport@...
one2001boy
Offline Send Email
Apr 16, 2007
8:34 am
584
Yes, now I can make the example work. The pragma statement that I found necessary, for the test program, is #pragma import <Student.cpp> However, now add a...
Milt Ratcliff
MiltRat
Offline Send Email
Apr 16, 2007
10:39 pm
585
... To handle C++ constructor overloading and polymorphism, You may use Student(...); for Student(); Student (char *n); Please check section 19.9.4 Polymorphic...
groupsupport@...
one2001boy
Offline Send Email
Apr 18, 2007
8:30 am
586
Hi, Is there any library having functions which allow a program to interrogate how much memory resources are available or used, preferably subdivided into main...
Jan Theodore Galkowski
disneylogic
Offline Send Email
Apr 19, 2007
3:14 am
587
High ChScite users! I used the localization files of the ChScite download site to switch the ChScite GUI to german language. In Windows the charakters are ...
bblochl_2
Offline Send Email
Apr 19, 2007
12:22 pm
588
My attempts to run the official example "load sample" with windows Visual Studio 2003 compiler fails. I am able to compile libsample.dl with any errors. But...
dreamlax
Offline Send Email
Apr 19, 2007
4:11 pm
589
... ChScite German localization is modified based http://scintilla.sourceforge.net/locale.de.properties You may modify locale.properties for german distributed...
groupsupport@...
one2001boy
Offline Send Email
Apr 20, 2007
7:31 am
Messages 559 - 589 of 1027   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help