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...
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 26712 - 26741 of 71513   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
26712
Since you are not allocating memory explicitly , no need to free anything. The system itself handles this. ... ...
Nicholas Freddy
nicholas@...
Send Email
Mar 1, 2003
8:16 am
26713
What hogging? The actual characters are part of the program. They've gotta be somewhere and in memory is where they are. ... Victor A. Wagner Jr....
Victor A. Wagner, Jr.
vawjr1943
Offline Send Email
Mar 1, 2003
6:16 pm
26714
Hi there, I can't seem to find why this program does not exit the loop whem the conditions are met, anyone else know?? Also why does the random numbers always...
ImacBabe
linktara
Offline Send Email
Mar 1, 2003
6:43 pm
26715
You need to change: for(tries = 0; (tries < MAXTRIES) || (found != TRUE); tries++) To: for(tries = 0; (tries < MAXTRIES) && (found != TRUE); tries++) Since you...
Ian Packer
snazlists@...
Send Email
Mar 1, 2003
8:55 pm
26716
I keep getting an illegal operation whenever i try to execute the following code: for (int count1; count1<groundcount;count1++) { ofstream out(savename); out...
Matthew Green
flammybodger
Offline Send Email
Mar 1, 2003
10:04 pm
26717
Hello All. I want to write a programthat will display a message box only if the date is certain days. It is a Windows GUI program. I am running Windows 98...
Riany f Klrac <gimpyc...
gimpyclaus
Offline Send Email
Mar 1, 2003
10:07 pm
26718
From: Matthew Green [mailto:matthew.green5@...] ... And count1 starts at? ;-) -- Peter...
Peter Nilsson
peternilsson42
Offline Send Email
Mar 1, 2003
11:20 pm
26719
From: ImacBabe [mailto:ImacBabe@...] ... It would be nice if you could explain to us, and more importantly the user, the orientation of the grid you're...
Peter Nilsson
peternilsson42
Offline Send Email
Mar 1, 2003
11:20 pm
26720
AAAAARRRRRRRRRRGGGGGGGGGGGHHHHHHHHH!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! My experience has always been that int count1 would always be assigned the value of 0....
Matthew Green
flammybodger
Offline Send Email
Mar 2, 2003
12:04 am
26721
That's some VERY odd experience. ... Victor A. Wagner Jr. http://rudbek.com The five most dangerous words in the English language: "There oughta be a law"...
Victor A. Wagner, Jr.
vawjr1943
Offline Send Email
Mar 2, 2003
12:38 am
26722
is it? I've heard people talk about unassigned variables containting a garbage value, but until now, for me at least, they've always had a value of 0. And I...
Matthew Green
flammybodger
Offline Send Email
Mar 2, 2003
1:51 pm
26723
what compiler are you using? I seem to get garbage all the time when I forget to initialize the variable. I'm using VS 6 enterprise edition. On occasion I use...
marianne
uddane@...
Send Email
Mar 2, 2003
3:17 pm
26724
HI, fellows I am learning WIN32 programming. I want to activate a screen saver by pressing Ctrl+Z. How can I do this using Visual C++ under WIN NT and win32 ...
Sharif, Muhammad
muhammad.sharif@...
Send Email
Mar 2, 2003
5:14 pm
26725
Thanks Peter and Ian, You really helped me get it working! ImacBabe...
linktara <ImacBabe@...>
linktara
Offline Send Email
Mar 2, 2003
5:32 pm
26726
Enterprise edition????????? I think you're way beyond my league (though that's irrelevant to the question). I'm using visual c++ 6. I've often used for...
Matthew Green
flammybodger
Offline Send Email
Mar 2, 2003
11:40 pm
26727
oh, visual c++ 6 standard. ... From: marianne To: c-prog@yahoogroups.com Sent: Sunday, March 02, 2003 3:12 PM Subject: Re: [c-prog] Unhandled exeption what...
Matthew Green
flammybodger
Offline Send Email
Mar 2, 2003
11:41 pm
26728
#include <windows.h> #include "resource.h" const char g_szClassName[] = "myWindowClass"; //Window Procedure LRESULT CALLBACK WndProc(HWND hwnd, UINT msg,...
Riany f Klrac <gimpyc...
gimpyclaus
Offline Send Email
Mar 3, 2003
3:10 am
26729
Hello. I am writing a win32 program and i am trying to create an icon for it. I am running Visual C++ 6.0. I created a new win32 GUI project, wrote my source,...
Riany f Klrac <gimpyc...
gimpyclaus
Offline Send Email
Mar 3, 2003
3:11 am
26730
From: js_sms <js_sms@...> [mailto:js_sms@...] ... Template specialization. Something along the lines of. template <class T> T my_func(T value){ //...
Paul Herring
shabble
Offline Send Email
Mar 3, 2003
8:32 am
26731
Hi. I'm a programmator from Romania and last week I've programmed an UDP chat using Win32 Sockets2 Api. My chat also contains a Time-Handler which sends ...
Malinici Stefan
malis10000
Offline Send Email
Mar 3, 2003
9:06 am
26732
... There is another way to specialise, and that's not to specialise! template<class T, T GCD(T,T)> class Rational { //... void normalise() { T gcd = GCD(num,...
peternilsson42 <airia...
peternilsson42
Offline Send Email
Mar 3, 2003
9:08 am
26733
I have a C++6 project with an oDialog object of CDialog type, and the following code: oDialog d1; CString c1="New Title" d1.SetWindowText(c1); The last C++...
George Arba <arba_geo...
arba_george
Offline Send Email
Mar 3, 2003
1:04 pm
26734
Before setting the text the window should be created! HTH, Cabbi...
Fabio Cabella
f.cabella@...
Send Email
Mar 3, 2003
1:08 pm
26735
create the window first. ... <BR> ... <BR> ... Sponsor</b></font></td> ... cellspacing=0> <tr> <td align=center><font face=arial size=- ...
Your Name
frostedearth
Offline Send Email
Mar 3, 2003
3:19 pm
26736
I am writing a command based (terminal) structured program and want to control the command prompt display for these 3 input modes. 1 interactive, where the...
Chad Cederberg
chadceder
Offline Send Email
Mar 3, 2003
7:16 pm
26737
When argc < 2, kick into interactive mode. HTH Shyan...
Shyan Lam
sflam108
Offline Send Email
Mar 3, 2003
8:14 pm
26738
Hi, Before, you need create the dialog, using function Create(ID_DIALOG,Parent) you create the dialog. After use SetWindoText(). Ricardo. ...
Perez Mayo Jorge Rica...
jrperezmayo
Offline Send Email
Mar 3, 2003
8:16 pm
26739
Thanks. Sometimes the obvious escapes me. Chad ... From: Shyan Lam [mailto:lam@...] Sent: Monday, March 03, 2003 2:13 PM To: c-prog@yahoogroups.com ...
Chad Cederberg
chadceder
Offline Send Email
Mar 3, 2003
8:19 pm
26740
... It's not possible within ANSI C, if you have POSIX you can use istty(). -- Peter...
Peter Nilsson
peternilsson42
Offline Send Email
Mar 3, 2003
10:55 pm
26741
Apologies if this is a double post, first one gave an error. ... ITIM: isatty -- Peter...
peternilsson42 <airia...
peternilsson42
Offline Send Email
Mar 3, 2003
11:32 pm
Messages 26712 - 26741 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