Search the web
Sign In
New User? Sign Up
Programmers-Town
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 3740 - 3769 of 12634   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3740
No, a destructor cannot be overloaded, because it doesn't have arguments, so there can be only one version. You probably meant override, that is something...
Mark Van Peteghem
mvp_be
Offline Send Email
Nov 1, 2004
8:29 am
3741
... If you know that all numbers are smaller than a certain number, like 10000, you can create an array called found of 10000 booleans which are set to false....
Mark Van Peteghem
mvp_be
Offline Send Email
Nov 1, 2004
8:35 am
3742
hi shinu, my program is running fine just try it. according to u the given array 'B' is a subset of 'A', and being a maths student i did understood ur query. u...
Ankush Jain
ankushj10
Offline Send Email
Nov 1, 2004
10:06 am
3743
i know about windows only stack grows downwards , atleast 2 bytes at a time depending upon the size of the value PUSHed. register 'SP'- Stack Pointer is...
Ankush Jain
ankushj10
Offline Send Email
Nov 1, 2004
10:21 am
3744
hello,every one i joined this group as i got invitation from the moderator please tell me about the c/c++ group and how can i help others and get the help ...
desaipa15
Offline Send Email
Nov 1, 2004
2:33 pm
3745
Dear friend, I suggest you to kindly enter your details in the group's database. Its available at the following link... ...
Programmers-Town@yaho...
Send Email
Nov 1, 2004
4:19 pm
3746
Reply embedded... ... Yes. Remember that a non-static member is associated to an object, so you need to pass a pointer or reference of the object to the...
Shyan Lam
sflam108
Offline Send Email
Nov 1, 2004
6:09 pm
3747
hi all, i want to create a window in maximized size (full screen), but it is showing in small size. I have used the keyword 'WS_MAXIMIZE', the 'CreateEx' func...
Ankush Jain
ankushj10
Offline Send Email
Nov 2, 2004
6:28 am
3748
Stack growns down only, because it starts from some highest address. And heap grows upwards, it starts from certain lowest address. Thr will be some kernel ...
asuresh
addait
Offline Send Email
Nov 2, 2004
8:38 am
3749
Hi Friends, I am back again to Programmers Town. I want to design a C++ application(Which is already in Java. But lacks performance due to high requirement)...
Thirumoorthy Chettian...
thirumoorthy_c
Offline Send Email
Nov 2, 2004
12:15 pm
3750
Are you using MFC? Are you using MFC's Doc/View architecture? What is CMainWindow derived from? Is CMainWindow derived from CFrameWnd or CMainFrame? If you're...
Shyan Lam
sflam108
Offline Send Email
Nov 2, 2004
3:33 pm
3751
Reply embedded... ... It is "Shyan" :-) ... Unfortunately I don't ;-) ... It was long ago since I last use BGI graphics. Unless you have a very old code to...
Shyan Lam
sflam108
Offline Send Email
Nov 2, 2004
4:54 pm
3752
use ShowWindow to maximize , see API reference for more details. Thanks D. Jegathesan Ankush Jain <ankushj10@...> wrote: hi all, i want to create a...
jegathesan
jegan_jobs
Offline Send Email
Nov 4, 2004
12:34 am
3753
Hi Thiru, you can use the AfxBeginThread API to implement thread. See API reference for more information. Thanks D. Jegathesan. Thirumoorthy Chettiannan...
jegathesan
jegan_jobs
Offline Send Email
Nov 4, 2004
12:34 am
3754
Hi Shyam, I cant explain it in words. You have solved a big problem for me.. I am very thankful to you... Once Again,Thank You.. Regards, Ashwin Mittal. ... ...
ashwin mittal
ashwin_mittal26
Offline Send Email
Nov 4, 2004
12:34 am
3755
no, i m not using doc/view arch.i m using project- "win32 application", and in proj settings "use MFC in shared dll". CMainWindow derived from "CFrameWnd" ...
Ankush Jain
ankushj10
Offline Send Email
Nov 4, 2004
12:34 am
3756
Hi! I am glad to introduce World's First Book on Professional Data Recovery Programming. Book also Includes a FREE CD, which contains complete Source Codes of...
Tarun Tyagi
taruntyagiji
Offline Send Email
Nov 4, 2004
12:34 am
3757
hii, i have doubt with function that return a reference. why do we need function that return a reference? what it is purpose? what is defference with function...
erudeuin
erudeuin@...
Send Email
Nov 4, 2004
12:34 am
3758
Hi, To create multithreaded applications you will require libraries which deal with threads.You can find it on many sites like freecountrycode.com ...
ashwin mittal
ashwin_mittal26
Offline Send Email
Nov 4, 2004
12:35 am
3759
Nitin, Since the operation returns TRUE, m will be assigned 1. True =1, False=0. Prashanth, Could you please tell us, as to how the grouping is done.. ie in m=...
Sreeram B S
sreeramabsc
Offline Send Email
Nov 4, 2004
12:35 am
3760
Does anyone know a good place to get examples and tutorials for creating socket connections and listeners? I am still sorta new to C++, but i guess i'll jump...
Nick Hird
nrhird
Offline Send Email
Nov 4, 2004
12:35 am
3761
Hi, With reference you can do.... form2 ob1, ob2, ob3; ob1 = ob2 = ob3 ; But without it you can't........ cheers Dennis erudeuin <erudeuin@...> wrote: ...
Dennis George
tech_joseph
Offline Send Email
Nov 4, 2004
6:03 am
3762
static data are initialized when a class is initialized (ie. Even before the creation of any object.) Static data are automatically initialized to 0. Static...
Venkatesh Raja
venkat_groups
Offline Send Email
Nov 4, 2004
6:03 am
3763
Thats right Mark, Destructor cannot have return type Destructor cannot be overridden or overloaded. But it can be made virtual.. The order of execution of...
Venkatesh Raja
venkat_groups
Offline Send Email
Nov 4, 2004
6:04 am
3764
... The purpose of this is that you can use more than assignment at a time, just like with primitive types: form1 a, b, c; a = b = c; Remember that operator=...
Mark Van Peteghem
mvp_be
Offline Send Email
Nov 4, 2004
6:04 am
3765
... A static block doesn't exist in C++. Also static data aren't automatically initialized to 0 in C++, at least not with my compiler (MSVC++ 6). Maybe you're...
Mark Van Peteghem
mvp_be
Offline Send Email
Nov 4, 2004
6:41 am
3766
Hi, Reply embedded... ... So you're programming using the SDK method (WinMain()) and MFC object? That is weird. I could be wrong but I don't think MFC is...
Shyan Lam
sflam108
Offline Send Email
Nov 4, 2004
3:48 pm
3767
No problem...But can you not changing my name ;-) Shyan...
Shyan Lam
sflam108
Offline Send Email
Nov 4, 2004
3:48 pm
3768
Hi, Reply embedded... ... They should be, as is specified by the standard. ... Really? Do you have some codes to demonstrate that it is not the case? HTH ...
Shyan Lam
sflam108
Offline Send Email
Nov 4, 2004
4:19 pm
3769
Hi, Reply/comments embedded... ... Not sure what you meant by "initializing a class". ... Agree. ... IIRC, the C++ language does not specify any "static...
Shyan Lam
sflam108
Offline Send Email
Nov 4, 2004
4:19 pm
Messages 3740 - 3769 of 12634   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