Forum: C Jan 22nd, 2006 |
| Replies: 1 Views: 3,553 What platform are you developing on? Mac, Windows, Linux? All provide API's for playing sound out of your stero speakers. |
Forum: C Jan 21st, 2006 |
| Replies: 2 Views: 1,298 I don't do any windows programing, but I know that there is a Cygwin library for windows. As far as I am aware you can use sockets using that library. I'm not sure if MFC and Cygwin could be mixed?... |
Forum: C Oct 28th, 2005 |
| Replies: 3 Views: 1,420 I ment to do: printf, not sprintf.
Thanks. |
Forum: C Oct 28th, 2005 |
| Replies: 3 Views: 1,420 I am retarted.
I realized I was using sprintf, not printf.
Duh! :) Thanks for your views everyone. |
Forum: C Oct 28th, 2005 |
| Replies: 3 Views: 1,420 My darn code keeps crashing, what am I doing wrong? I have a class with the follwoing method:
void BBSNode::AddToBuffer(char *buffer) {
//strcat((char*)inputBuffer, (char*)buffer);... |
Forum: C Oct 9th, 2005 |
| Replies: 2 Views: 2,281 What kind of database? Are you accessing the database though a database server? If ADO is a windows data access driver(or whatever ms calls it) then what kind of password are you talking about? |
Forum: C Oct 9th, 2005 |
| Replies: 2 Views: 1,695 Ah.. Duh! That was it. It's always the simple things I dont catch.
Thanks again! :) |
Forum: C Oct 7th, 2005 |
| Replies: 2 Views: 1,695 I everyone, I have two C Socket questions. I have searched the net and read my reference books, but cannot find my answer.
Anyway, I am making a simple telnet based server. To create a new socket... |