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...
Show off your group to the world. Share a photo of your group with us.

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 43628 - 43657 of 71513   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
43628
Hi, I need help, how can I get size,label and free size of volumes in a computer with using c or c++, can you help me? Thanks, ... Do you Yahoo!? Better first...
erman ince
ermanince
Offline Send Email
Apr 1, 2005
8:21 am
43629
... Goodness, that's the third cross-post of this question! What a luck than Paul already has answered this, otherwise I may feel tempted to write my usual...
Nico Heinze
nico_heinze
Offline Send Email
Apr 1, 2005
8:27 am
43630
... That's exactly what I had in mind for conversion. :-) No, honestly, due to speed I'll store values in the format "native" to the particular machine. The...
Nico Heinze
nico_heinze
Offline Send Email
Apr 1, 2005
8:35 am
43631
... computer with using c or c++, can you help me? ... What volumes? I guess you are talking about disk volumes. If so, this is completely specific to the OS...
Nico Heinze
nico_heinze
Offline Send Email
Apr 1, 2005
8:39 am
43632
I mean logical drives on system with volume, I use Windows OS ... computer with using c or c++, can you help me? ... What volumes? I guess you are talking...
erman ince
ermanince
Offline Send Email
Apr 1, 2005
8:50 am
43633
Is this under windows or unix ? ... ReadFile(hComm,&read,valToRead,&NumberOfBytesRead,&overLaped); ... Joao Coelho...
Joao Coelho
ofilha
Online Now Send Email
Apr 1, 2005
2:50 pm
43634
ok i am using a compilier called Microsoft Visual C++ 6.0 since that is the one provided by my school. ummm does it really matter about the computer specs?? ...
darkshadow_x21
Offline Send Email
Apr 1, 2005
3:16 pm
43635
... I'm not the moderator, but this discussion is starting to get a tad ad hominem, don't you think? Maybe it's time to abandon it?...
Barry Gold
bgoldnyxnet
Offline Send Email
Apr 1, 2005
3:37 pm
43636
... From: Brett McCoy [mailto:bmccoy@...] Sent: Thursday, March 31, 2005 3:39 PM To: c-prog@yahoogroups.com Subject: Re: [c-prog] Re: #include...
S Watts
swatts23
Offline Send Email
Apr 1, 2005
4:07 pm
43637
This is under Windows, VC6 ... From: "Joao Coelho" <ofilha@...> To: <c-prog@yahoogroups.com> Sent: Friday, April 01, 2005 8:20 PM Subject: Re: [c-prog]...
Anand Vardhan Mathur
anand_mathur...
Offline Send Email
Apr 1, 2005
4:13 pm
43638
... Yes, because different operating systems have different ways of playing back audio, and the software interface to the sound hardware is going to be...
Brett McCoy
idragosani
Online Now Send Email
Apr 1, 2005
4:44 pm
43639
Here is a function i wrote to check if ports are available and modems exist. But if you check out Microsoft's site they have more examples. And if you check...
Joao Coelho
ofilha
Online Now Send Email
Apr 1, 2005
4:49 pm
43640
... going to ... though). ... For Microsoft products, you can also consult Microsoft's websites. http://msdn.microsoft.com for example. Not everything they...
Bernd Stramm
berndstramm
Offline Send Email
Apr 1, 2005
5:25 pm
43641
how to read a file byte by byte , one byte at a time ? DWG=7antoosh...
Ghassan
gh_leen
Offline Send Email
Apr 1, 2005
6:57 pm
43642
... You mean something different than using fread()? -- Brett...
Brett McCoy
idragosani
Online Now Send Email
Apr 1, 2005
7:25 pm
43643
fgetc...
Bernd Stramm
berndstramm
Offline Send Email
Apr 1, 2005
7:26 pm
43644
... #include <stdio.h> int main(void) { FILE *file = fopen(__FILE__, "rb"); if ( file ) { int c; while ( (c = getc(file)) != EOF ) { /* ... */ } } return 0; }...
Dave Sinkula
dave_sinkula
Online Now Send Email
Apr 1, 2005
7:27 pm
43645
Hello all, I am looking for a way to determine the size of a disk drive under Linux in C. I have tried using stat() on the device file (e.g.; /dev/fd0), but...
willieej2002
Offline Send Email
Apr 1, 2005
10:29 pm
43646
... man statvfs or man statfs Josh...
Josh Helmer
joshhelmer
Offline Send Email
Apr 1, 2005
10:47 pm
43647
... another. ... Thank you Josh. These function were exactly what I was looking for. :) -Willie...
willieej2002
Offline Send Email
Apr 1, 2005
11:05 pm
43648
Hi all, How can we make a class not derivable. i.e class Base //Some Base class { }; class Derived : public Base // This shud not work { }; But Base b =...
Mahesh Menase
mahesh_menase
Offline Send Email
Apr 2, 2005
9:58 am
43649
... Here is some info on making a 'final' class in C++ http://www.codeguru.com/Cpp/Cpp/cpp_mfc/stl/article.php/c4143/ -- Brett http://www.chapelperilous.net/ ...
Brett W. McCoy
idragosani
Online Now Send Email
Apr 2, 2005
2:52 pm
43650
... (After reading the license). Thomas J. Hruska shinelight@... Shining Light Productions Home of the Nuclear Vision scripting language and...
Thomas J. Hruska
shininglightpro
Offline Send Email
Apr 2, 2005
5:35 pm
43651
... Nothing they make is secret - they are a publicly held company. The only "secrets" are a couple hundred APIs that no one really calls directly anyway....
Thomas J. Hruska
shininglightpro
Offline Send Email
Apr 2, 2005
5:40 pm
43652
Warning C4266. It does not exist. Anywhere. base.h(3632): warning C4266: '...SomeFunctionWithParameterList...': no override available for virtual member...
Thomas J. Hruska
shininglightpro
Offline Send Email
Apr 2, 2005
5:47 pm
43653
... some sample code would let us evaluate the correctness of the warning. I've often discovered that the compiler actually knows a helluva lot more about the...
Victor A. Wagner Jr.
vawjr1943
Offline Send Email
Apr 2, 2005
6:15 pm
43654
... I found this in the beta whidbey "help" [This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as...
Victor A. Wagner Jr.
vawjr1943
Offline Send Email
Apr 2, 2005
6:19 pm
43655
... That sentence and example was exactly what I was looking for. I didn't know I had to override _ALL_ virtualized functions of the same name from the base...
Thomas J. Hruska
shininglightpro
Offline Send Email
Apr 2, 2005
6:58 pm
43656
... This is, generally-speaking, a _REALLY_ bad idea. Especially since you are likely to apply the concepts you learn to large files exceeding 1MB. Your ...
Thomas J. Hruska
shininglightpro
Offline Send Email
Apr 2, 2005
7:36 pm
43657
... Victor...you know better than to insult list members. Play nice even if they are stubborn, annoying, and/or wrong. I agree with Barry, this discussion...
Thomas J. Hruska
shininglightpro
Offline Send Email
Apr 2, 2005
8:11 pm
Messages 43628 - 43657 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