Search the web
Sign In
New User? Sign Up
c-prog · C/C++ Programmer's Mailing List
? 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 25373 - 25403 of 71513   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
25373
That's no help... give us the errors you are getting. ... From: <robertl@...> To: <c-prog@yahoogroups.com> Sent: Tuesday, December 31, 2002 9:50 PM ...
Nathan
nathansusername
Offline Send Email
Jan 1, 2003
8:48 am
25374
read about SendMessage API function && List Box Messages (those beginning with LB_ ) maybe this will help you: http://freenet.am/~zombie/src/st.zip Wednesday,...
z0mbie
nxfpxn@...
Send Email
Jan 1, 2003
11:57 am
25375
hi all, I have a problem with a class GInt... I use the following declaration: class GInt { public: friend GInt operator+ (const GInt&, const GInt&); //... ...
Raphlistes@...
Send Email
Jan 1, 2003
4:06 pm
25376
Hi folks, I'm fairly new to C++, and I'm just working through some exercises from Lippman's C++ Primer. In the following piece of code, I have stored a series ...
Mike Lacey
drboss_demon
Offline Send Email
Jan 1, 2003
4:23 pm
25377
`friend' modifier allows functions to use private or protected members in their definition, and is not a declaration of member functions. So you should have...
OKAIE Yutaka
okaie@...
Send Email
Jan 1, 2003
4:46 pm
25378
Hi all and a successful new year 2003, I am seeking for help concerning templates, I have written some code with C++, I was able to compile it fine, I created...
tcheer@...
Send Email
Jan 1, 2003
4:56 pm
25379
Change the prototype of the function `SearchSurname' as follows. map<string, vector<string> >::const_iterator SearchSurname(const map<string, vector<string> >...
OKAIE Yutaka
okaie@...
Send Email
Jan 1, 2003
5:54 pm
25380
Hello Shyan ... PMFJI, but I have a similar situation that I have been thinking there must be a better way to handle. In one class I have a vector which I...
Jack York
ptree_2000
Offline Send Email
Jan 1, 2003
6:52 pm
25381
code for a list box... /*--------------------------------------*/ #define IDL_MYLB 301 /*Sometime during initialization...*/ HWND hwndLB = CreateWindow ( ...
Dinesh V. R.
dineshvr@...
Send Email
Jan 1, 2003
7:25 pm
25382
Many thanks Okaie, that has fixed it. Cheers, Mike [snip] ... [snip] ... Mike Lacey m.i.lacey@... ... Outgoing mail is certified Virus Free. ...
Mike Lacey
drboss_demon
Offline Send Email
Jan 1, 2003
8:55 pm
25383
... How about that: obfuscating leads to learning something new. And both Borland C++ 5.0 and PC-lint for C/C++ (NT) Ver 8.00e had nothing to say about this,...
Dave Sinkula
dave_sinkula
Online Now Send Email
Jan 1, 2003
9:00 pm
25384
and neither gcc 3 ... From: "Dave Sinkula" <Dave_Sinkula@...> To: <c-prog@yahoogroups.com> Sent: Wednesday, January 01, 2003 7:08 PM Subject:...
Keyser Soze
fabriciooliv...
Offline Send Email
Jan 1, 2003
9:15 pm
25386
thanks Amit Agarwal char a[]="\16\1\4\2\2\3\0\13\10\11\7\0\14\11\6\0\15\12\12\10\5",b[]=" !023\ HNYaeprwy\n";int putchar(int),main(int ...
Amit Agarwal
raj77_in
Offline Send Email
Jan 2, 2003
5:41 am
25387
Regards Mike Mareya God Bless Zimbabwe ... Add photos to your e-mail with MSN 8. Get 2 months FREE*....
mike mareya
fadzi43215
Offline Send Email
Jan 2, 2003
5:57 am
25388
hi friend function is not a member of any class so while defining the function u should not use the scope resolution operator i.e. Glnt operator+(const Glnt &a...
bhawna.chugh@...
bhawna21_6
Offline Send Email
Jan 2, 2003
6:40 am
25389
That's right.. for your ref. here is a very simple sample..just modify to your need.. class complex{ int re, im; public: complex(int ip1 = 0, int ip2 = 0) ... ...
Shiva Prasad T.S.
tsshivaprasad
Offline Send Email
Jan 2, 2003
8:50 am
25390
Hi, Please see the following example : class A { int i; public : A (int j = 0) { i = j;} ............. }; A func1() { return A(); } void func2 ( A &a) { ..... ...
Lalit Kumar Bhasin
lalit.bhasin@...
Send Email
Jan 2, 2003
9:23 am
25391
From: Lalit Kumar Bhasin [mailto:lalit.bhasin@...] ... [snip] ... MSVC 6.0 will compile the following with the warnings following (On the highest warning...
Paul Herring
shabble
Offline Send Email
Jan 2, 2003
10:14 am
25392
Hi all, i'm trying to create this dialog class for my DOS GUI it works alright but i can't seem to set the bkcolor to white as this distorts the Dialog frames...
cbb
cbb3268
Offline Send Email
Jan 2, 2003
10:50 am
25393
hi everyone happy new year to all looking forward to new and brain teasing problems in c and c++ this year bye ...
Bikram Jeet
sultan_khamosh
Offline Send Email
Jan 2, 2003
2:41 pm
25394
Why can I set the font and the application Icon in the part of the code below? Could someone help me. I run this code but I cannot setup the font style and...
Joandre Oliveira Melo
jom@...
Send Email
Jan 2, 2003
4:09 pm
25395
Hi Jack, Since both vcur and vpass are subset of vmain, can you simply extent your structure to: struct mystruct { string date; bool bCur; bool bPass; }'; ...
Shyan Lam
sflam108
Offline Send Email
Jan 2, 2003
4:11 pm
25396
Hi, To create a list box, use CreateWindow() or CreateWindowEx() using "LISTBOX" as class name. To populate list box, checkout LB_ADDASTRING. LB_GETCURSEL to...
Shyan Lam
sflam108
Offline Send Email
Jan 2, 2003
4:11 pm
25397
Why can I set the font and the application Icon in the part of the code below? Could someone help me. I run this code but I cannot setup the font style and...
Joandre Oliveira Melo
jom@...
Send Email
Jan 2, 2003
4:11 pm
25398
Hello Shyan ... I'm not sure I understand. I think you are saying to have one vector, instead of the three, but mark each member as either current or past....
Jack York
ptree_2000
Offline Send Email
Jan 2, 2003
5:37 pm
25399
Have you thought about using a map instead of a vector? It seems to me that you could cut down on a lot of the complexity by using a data structure that can...
Tanton Gibbs
thgibbs
Offline Send Email
Jan 2, 2003
6:05 pm
25400
Hi Jack, I am not STL expert either :-|, but I don't think you can reference the way you want it (vCur reference certain part of vMain) :-( I think you did...
Shyan Lam
sflam108
Offline Send Email
Jan 2, 2003
7:23 pm
25401
Hello Tanton ... No I haven't but that's only because I don't know anything about it. :) Thanks for mentioning it. I will give it a try. Jack -- E-Mail:...
Jack York
ptree_2000
Offline Send Email
Jan 2, 2003
7:54 pm
25402
Hello Shyan ... I didn't think of this approach. It sounds like it will work much better than what I am doing now. I'll give it a try. Thanks Shyan. :) Jack...
Jack York
ptree_2000
Offline Send Email
Jan 2, 2003
7:54 pm
25403
Happy New Year Adi Duca http://www.tropicanasoft.com...
tropicana
tropicana@...
Send Email
Jan 2, 2003
11:04 pm
Messages 25373 - 25403 of 71513   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