Forum: C++ Feb 5th, 2008 |
| Replies: 1 Views: 461 I need help with the assignment operator and destructor, and the deleting by copy. Can someone help me with this? and when i compile just this i get an error on line 219 saying term does not evaluate... |
Forum: Assembly Sep 26th, 2007 |
| Replies: 1 Views: 1,513 i have to fill in this table and I am not sure how to fill in the rest. can anyone help? ignore the 1 0 d at the top |
Forum: PHP May 16th, 2007 |
| Replies: 1 Views: 735 If PHP is ran through the Apache server the files must be in the what folder? |
Forum: JavaScript / DHTML / AJAX May 16th, 2007 |
| Replies: 1 Views: 999 If PHP is ran through the Apache server the files must be in the what folder? |
Forum: C++ Apr 16th, 2007 |
| Replies: 0 Views: 1,429 I have these two class and I have to make the Dynamic3DArray class a template. I started it but now I am lost and I do not know where to go or what to do. I tried looking online but nothing I find I... |
Forum: C++ Mar 6th, 2007 |
| Replies: 8 Views: 1,339 void main () {
HANDLE hOut;
COORD NewSBSize;
SMALL_RECT DisplayArea = {0, 0, 0, 0};
hOut = GetStdHandle(STD_OUTPUT_HANDLE);
NewSBSize =... |
Forum: C++ Mar 6th, 2007 |
| Replies: 8 Views: 1,339 I fixed that now but I still have the un-expected file ending. Do you know why its doing this? |
Forum: C++ Mar 6th, 2007 |
| Replies: 8 Views: 1,339 My main has an unexpected end to the file and i am having problems finding the error. can anyone help? It also says where "case 81" is that i already used it but I have not.
void main () {
... |
Forum: C++ Feb 27th, 2007 |
| Replies: 12 Views: 2,290 #include <iostream> //For console output
#include <windows.h> // WinApi header
#include <conio.h>
using namespace std;
#define minCOL 2 //minimum size allowed for number of columns... |
Forum: C Feb 13th, 2007 |
| Replies: 1 Views: 753 How do I make the console window go full screen? right now when you run the program i made it comes up as a small box, but what code would i use to make it go full screen every time a user runs my... |
Forum: C++ Feb 5th, 2007 |
| Replies: 12 Views: 2,290 #include <iostream> //For console output
#include <windows.h> // WinApi header
#include <conio.h>
using namespace std;
#define EMPTY_CELL 177
#define CURSOR 1
#define TAIL 219
#define NUM 6 |
Forum: C++ Jan 24th, 2007 |
| Replies: 12 Views: 2,290 #include <iostream> //For console output
#include <windows.h> // WinApi header
using namespace std;
#define EMPTY_CELL 177
#define CURSOR 1
#define TAIL 219
#define NUM 6
... |
Forum: C++ Jan 23rd, 2007 |
| Replies: 12 Views: 2,290 #include <iostream> //For console output
#include <windows.h> // WinApi header
using namespace std;
#define EMPTY_CELL 177
#define CURSOR 1
#define TAIL 219
#define NUM 6
... |
Forum: C++ Jan 22nd, 2007 |
| Replies: 12 Views: 2,290 #include <iostream> //For console output
#include <windows.h> // WinApi header
using namespace std;
#define EMPTY_CELL 177
#define CURSOR 1
#define TAIL 219
#define NUM 6
... |
Forum: C++ Dec 5th, 2006 |
| Replies: 11 Views: 2,591 The error still comes up the same even when I take out the "this->" :sad: |
Forum: C++ Nov 28th, 2006 |
| Replies: 11 Views: 2,591 I did that and it has seemed to fix those errors, thank you. But there one error i getting now like 15 times in my program. this is the error
error (file://\\error) C2659: '=' : overloaded... |
Forum: C++ Nov 27th, 2006 |
| Replies: 11 Views: 2,591 I put the pointer there to make an array of pointers. What is the correct way to do it? |
Forum: C++ Nov 22nd, 2006 |
| Replies: 11 Views: 2,591 this is what i need help with, thereason why i didnt wanna post it is cause i dont want no one stealing my game code and plus as you see its really long, and i mean long. but im at home and i cant... |
Forum: C++ Nov 22nd, 2006 |
| Replies: 11 Views: 2,591 Im really trying to do this c++ stuff and I need someone to really help me. My yahoo is eyestolethis. If someone could please come on yahoo and message me and try to help me that would be great. I... |
Forum: C++ Nov 20th, 2006 |
| Replies: 1 Views: 1,366 #include <iostream>
#include <ctime>
using namespace std;
// Dynamic Single Array of integers
#define dAry
class DynaArray {
private:
int SIZE;
int* array;
public: |
Forum: C++ Nov 20th, 2006 |
| Replies: 4 Views: 1,583 #include <iostream>
#include <iomanip>
using namespace std;
struct Node {
int number;
char color;
bool open;
};
#define DEPTH 5 |
Forum: C++ Oct 25th, 2006 |
| Replies: 1 Views: 1,087 i have to make a minesweeper game for class, 3d none the less using microsoft visual c++. i have created my dynamic class. there needs to be a node class and a grid class. i have no clue how to do... |