Forum: C++ Feb 12th, 2009 |
| Replies: 11 Views: 1,539 Thank you MHC for your help. Ive managed to get it to Play/Pause and currently working on volume using the waveOut functions.
Cheers mate |
Forum: C++ Feb 2nd, 2009 |
| Replies: 11 Views: 1,539 Thanks for your replies, am looking into it as we speak.
One last question (for now!)
Im currently playing the loaded wav file using :
sndPlaySound(Filepath, SND_ASYNC);
Im aware that to... |
Forum: C++ Jan 29th, 2009 |
| Replies: 11 Views: 1,539 Thank you for your responses,
How would i compress the files after scaling as I did find scaling them up to cause distortion. |
Forum: C++ Jan 28th, 2009 |
| Replies: 11 Views: 1,539 Hey all.
Im working on a project that manipulates Wav files such as being able to add an echo to it and so on. So far ive managed to read in the Wav, split it up into the header file and data and... |
Forum: C++ Jan 9th, 2009 |
| Replies: 3 Views: 1,800 Hey, I am trying to replicate a sort of Windows Media Player type library and was wondering if there was such a thing (or an equivalent) as an Multi-Column Listbox.
Currently, I have the data... |
Forum: C Dec 7th, 2007 |
| Replies: 4 Views: 836 Thanks alot for your help Narue, sorted me out =D |
Forum: C Dec 7th, 2007 |
| Replies: 4 Views: 836 char *IntToStr(long Val, char *Str)
{
int counter = 0;
int endofarray = 0;
int holder = 0;
int ExitLoop = 0;
char temp;
for(counter = 0; counter < 6; counter++) |
Forum: C Dec 7th, 2007 |
| Replies: 4 Views: 836 Basically for part of my assignment, I have to write my own int to string. This is done, however the problem is I can only enter 6 digits to convert otherewise my program crashes. Out lecturer also... |
Forum: Java Nov 13th, 2007 |
| Replies: 0 Views: 1,066 The Game
The game involves 10 words, which make up the nonsense sentence, “to tip pods on pan is as a tad din”. Two players take it in turn to take a word. The winner is the player who takes words... |
Forum: C++ Feb 28th, 2007 |
| Replies: 3 Views: 1,089 Thanks for the help guys! |
Forum: C++ Feb 27th, 2007 |
| Replies: 3 Views: 1,089 Hi, I am reading textfiles in a structure like this:
ifstream TextFile;
TextFile.open("quote.txt");
while (!TextFile.eof())
{
TextFile >> Quote[RecordNumber].RefNumber;
TextFile >>... |
Forum: C++ Feb 20th, 2007 |
| Replies: 6 Views: 2,783 Worked perfect, thanks guys. |
Forum: C++ Feb 20th, 2007 |
| Replies: 6 Views: 2,783 They are defined as char[],
So i compare them first, and then swap them? The swap doesn't seem to work though.
And why do i need to compare them before i swap them?
Thanks, Ian |
Forum: C++ Feb 20th, 2007 |
| Replies: 6 Views: 2,783 Hey, i am trying to do a sort in C++. I have a strucutre of different records such as Quote number, Surname, Total cost and Deliverycost. I am trying to sort in order of Quote Number. Im using a... |
Forum: C++ Feb 12th, 2007 |
| Replies: 3 Views: 1,164 I knew i had to use strcmp. Just needed verification of this. Will give this a go now and report back. Thanks for your quick replies and help guys! |
Forum: C++ Feb 12th, 2007 |
| Replies: 3 Views: 1,164 Hey, i am trying to search an array of surnames. I am entering in a surname, and if that surname is in the array, i want to to bring out all other details for that surname that are stored in a... |
Forum: C++ Jan 31st, 2007 |
| Replies: 9 Views: 1,654 Haha yes i wasn't expecting someone to explain it all to me, I will have a look but i'll probably stick with the way its working at the moment for now. I will check it out though.
Thanks for... |
Forum: C++ Jan 31st, 2007 |
| Replies: 9 Views: 1,654 I haven't no, nor do i have the faintest what they are! haha.
Sorry for my newbie ways! |
Forum: C++ Jan 31st, 2007 |
| Replies: 9 Views: 1,654 Surely now i have 5 different arrays, with 5 different pieces of information in it, i can do a search to find out its place within the array and then use the array place to find the corrosponding... |
Forum: C++ Jan 31st, 2007 |
| Replies: 9 Views: 1,654 Thank you for your replies, much appreciated. Ive managed to now get the file read in line by line and put each line into a different array. So i now have one array of all the quote numbers, 1 array... |
Forum: C++ Jan 30th, 2007 |
| Replies: 9 Views: 1,654 Hey everyone, this is my first post. I have viewed these forums alot in the past for C++ help and it has helped me out alot, however I have reached a problem myself. I have been doing C++ since last... |