Forum: C++
Nov 12th, 2004, 3:04 PM
|
|
Replies: 14
Views: 301
|
Forum: C++
Nov 11th, 2004, 12:11 PM
|
|
Replies: 0
Views: 302
|
Forum: C++
Nov 11th, 2004, 8:17 AM
|
|
Replies: 8
Views: 273
|
Forum: C++
Nov 10th, 2004, 3:01 AM
|
|
Replies: 14
Views: 301
hold on i'm sure this a much more direct way....
hold on i'm sure this a much more direct way.
if you have the number 49, it is the same as writing
(4 * 10^1) + (9 * 10^0). Therefore extracting the number in the 10s column can be done by taking...
|
Forum: C++
Nov 9th, 2004, 5:41 PM
|
|
Replies: 8
Views: 273
|
Forum: C++
Nov 9th, 2004, 4:55 PM
|
|
Replies: 8
Views: 273
I've got a workspace called Soundblade and 3...
I've got a workspace called Soundblade and 3 files in the project:
Constants.h
Soundblade.cpp
WaveFile.cpp
with the entry point in Soundblade.cpp. The contents of Constants.h is
const char RIFF[]...
|
Forum: C++
Nov 9th, 2004, 4:36 PM
|
|
Replies: 5
Views: 255
|
Forum: C++
Nov 8th, 2004, 12:59 PM
|
|
Replies: 2
Views: 251
|
Forum: C++
Nov 8th, 2004, 12:57 PM
|
|
Replies: 2
Views: 191
|
Forum: C++
Nov 7th, 2004, 6:17 AM
|
|
Replies: 2
Views: 191
Suppose I have an array X of short ints with...
Suppose I have an array X of short ints with around a several thousand values.
What I want to do is generate another array Y of exactly 1000 elements whose content is representative of X. Y should...
|
Forum: C++
Nov 7th, 2004, 6:03 AM
|
|
Replies: 11
Views: 283
|
Forum: C++
Nov 7th, 2004, 6:02 AM
|
|
Replies: 5
Views: 255
|
Forum: C++
Nov 7th, 2004, 5:59 AM
|
|
Replies: 7
Views: 288
|
Forum: C++
Nov 5th, 2004, 5:40 AM
|
|
Replies: 3
Views: 234
OK here's the thing....
in my message loop, if...
OK here's the thing....
in my message loop, if the WM_PAINT message is recieved I call the draw function.
The draw function refers to a global array called LEFT_SPEAKER_GRAPH_POINTS (which has...
|
Forum: C++
Nov 5th, 2004, 5:07 AM
|
|
Replies: 5
Views: 255
Is there any way I can have a windowed app that...
Is there any way I can have a windowed app that also prints statements to the console? I'm having a hard time debugging my app, I'd just like to see some values printed to the screen in order to get...
|
Forum: C++
Nov 5th, 2004, 4:19 AM
|
|
Replies: 3
Views: 234
|
Forum: C++
Nov 5th, 2004, 4:15 AM
|
|
Replies: 33
Views: 661
this is an interesting discussion but I must...
this is an interesting discussion but I must admit to being a tad confused.
i'm quite good with Java and don't have much problem punching out simple GUI's in Java. But I'm currently working on a...
|
Forum: C++
Nov 4th, 2004, 1:45 PM
|
|
Replies: 3
Views: 234
I wanted to make a simple app that draws that...
I wanted to make a simple app that draws that waveform of a wavefile. I actually made a lot of progress in one day and got it to work. But then I thought about restructuring my code a little bit and...
|