Search the web
Sign In
New User? Sign Up
ArachneDevelopment · Arachne Development
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 2948 - 2977 of 4273   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2948
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the ArachneDevelopment group. File :...
ArachneDevelopment@ya...
Send Email
Feb 2, 2007
8:01 am
2949
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the ArachneDevelopment group. File :...
ArachneDevelopment@ya...
Send Email
Feb 2, 2007
8:05 am
2950
Hi all, Well, I finally found some time to look into the 'ctype.h' issue with BC 4.52, and this seems to have the same problems as TC/BC 3.X ... I've...
Joe da Silva
j_ds_au
Offline Send Email
Feb 2, 2007
8:19 am
2951
... Thanks Joe. Regards, Ray Andrews -- Arachne R1-beta5:9j...
Ray Andrews
randrews1235711
Offline Send Email
Feb 2, 2007
10:11 pm
2952
Hi Glenn, et al. Good sleuthing. I've had a quick look at this now and it seems that the 'strtol' and 'strtoul' functions have more capability than the 'atoi'...
da Silva, Joe
j_ds_au
Offline Send Email
Feb 5, 2007
1:49 am
2953
Thanks for the suggestion Joe, This does work better than my 1st attempt at conversion. (but it's still imperfect) unsigned char HTMLentity(char *name) { ...
glennmcc1959
Offline Send Email
Feb 5, 2007
4:01 am
2954
... Aren't you making this far harder than it need be? I've got: if(*name == '#') { int j = (int)strtol(name + 1, NULL, 0); // int j = atoi(&name[1]); etc. ...
Ray Andrews
randrews1235711
Offline Send Email
Feb 5, 2007
5:01 am
2955
... Did you try your variation ? Does it work ?...
glennmcc1959
Offline Send Email
Feb 5, 2007
10:40 pm
2956
... I'll answer my own question...... Yes, it works !!!! unsigned char HTMLentity(char *name) { //!!glennmcc: Feb 05, 2007 -- attempt to interpret HEX format...
glennmcc1959
Offline Send Email
Feb 5, 2007
11:31 pm
2957
Hi Glenn, Ray, et al. Well, I must agree with Ray on this one ... why complicate things? The intention is to simply substitute 'atoi' with 'strtol' or...
Joe da Silva
j_ds_au
Offline Send Email
Feb 5, 2007
11:52 pm
2958
strtoul(string, endPtr, base) char *string; /* String of ASCII digits, possibly * preceded by white space. For bases * greater than 10, either lower- or *...
glennmcc1959
Offline Send Email
Feb 6, 2007
12:41 am
2959
Hi Glenn, et al. Ahhh ... so that's the glitch! :-/ The BC IDE-Help implied the leading zero was optional for hexadecimal values, but if that's not the case,...
da Silva, Joe
j_ds_au
Offline Send Email
Feb 6, 2007
1:13 am
2960
Sorry to say... you would be assuming incorrectly. http://www.codento.com/people/mtr/genscript/mac.txt...
glennmcc1959
Offline Send Email
Feb 6, 2007
1:48 am
2961
Hi Glenn, et al. Well, I'm not sure that page really implies that octal values can be used in numeric entities, but if we want to handle that, it's no big deal...
Joe da Silva
j_ds_au
Offline Send Email
Feb 6, 2007
2:48 am
2962
... It says here: The characters in s must match this generic format: þ strtod: [ws] [sn] [ddd] [.] [ddd] [fmt[sn]ddd] þ strtol: [ws] [sn] [0] [x] [ddd] ...
Ray Andrews
randrews1235711
Offline Send Email
Feb 6, 2007
3:22 am
2963
I think we have it nailed this time. Thank you Joe.... Thank you Ray...... unsigned char HTMLentity(char *name) { //!!glennmcc: Feb 06, 2007 -- attempt to...
glennmcc1959
Offline Send Email
Feb 7, 2007
2:23 am
2964
Ah ha.... '\' (backslash) is the character to 'key on' for OCTAL..... http://randsco.com/_miscPgs/iso-8859-1_entities.html unsigned char HTMLentity(char *name)...
glennmcc1959
Offline Send Email
Feb 7, 2007
4:35 am
2965
Hi Glenn , et al. Hmmmm ... again I must be sceptical about "numeric character references" in octal format. While this page is about character entities, I...
Joe da Silva
j_ds_au
Offline Send Email
Feb 7, 2007
8:19 am
2966
Well, I guess it's a matter of the two of us interpreting it differently. <ggg> ... ASCII OCTAL and Hexidecimal entity values for the iso-8859-1 character set....
glennmcc1959
Offline Send Email
Feb 7, 2007
6:38 pm
2967
In doing some further research, I find that you are correct. Octal is not used in HTML itself but rather simply in some program tools. Therfore, I'll go ahead...
glennmcc1959
Offline Send Email
Feb 7, 2007
6:50 pm
2968
... unsigned char HTMLentity(char *name) { //!!glennmcc: Feb 05, 2007 -- interpret HEX, OCT and DEC format entities // HEX &#x0027; == OCT &#\37; == DEC &#39; ...
glennmcc1959
Offline Send Email
Feb 7, 2007
7:10 pm
2969
Hi all, Sorry for the delay in forwarding this ... Joe. ... From: PEROTTI ROBERTO [mailto:iw2evk@...] Sent: Friday, 22 December 2006 9:22 PM To: da...
da Silva, Joe
j_ds_au
Offline Send Email
Feb 8, 2007
7:30 am
2970
Hi again, A smaller delay in forwarding this one ... ;-) Joe. ... From: iw2evk@... [mailto:iw2evk@...] Sent: Thursday, 1 February 2007 11:25 PM ...
da Silva, Joe
j_ds_au
Offline Send Email
Feb 8, 2007
7:32 am
2971
On Thu, 8 Feb 2007 18:31:51 +1100, da Silva, Joe wrote: Has anyone tried these drivers? Regards, Ray Andrews -- Arachne R1-beta5:9j...
Ray Andrews
randrews1235711
Offline Send Email
Feb 8, 2007
10:50 pm
2972
Right now, all that's being done with the 'Alt text' is to display it in the empty image box befpore loading the images. CAV would like that 'Alt text' to be...
glennmcc1959
Offline Send Email
Feb 10, 2007
12:40 am
2973
... Might be interesting to display the text since there is often additional info hidden in it. And where would the URL be displayed in this case? Regards, Udo...
Udo Kuhnt
048321887-0001@...
Send Email
Feb 10, 2007
6:58 am
2974
... I was thinking of ...... If there is a URL under the image.... display the URL as usual. If there is not a URL.... display the 'alt text'. If there is a...
glennmcc1959
Offline Send Email
Feb 10, 2007
9:49 pm
2975
Hi Glenn, et al. So, how is the old codger? Still fending off the alligators? <GGGG> Anyway, this sounds like a useful little enhancement. As Udo has pointed...
da Silva, Joe
j_ds_au
Offline Send Email
Feb 12, 2007
12:54 am
2976
Hi all, I came across this little gem the other day : http://compilers.iecc.com/crenshaw/ Although it's not entirely complete (it sort of goes "off the rails"...
da Silva, Joe
j_ds_au
Offline Send Email
Feb 12, 2007
1:11 am
2977
... What about displaying a box with the tip text when the mouse pointer hovers over the image, like what Firefox does with URLs in the FTP client? Then it...
Udo Kuhnt
048321887-0001@...
Send Email
Feb 12, 2007
11:24 pm
Messages 2948 - 2977 of 4273   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