Forum: PHP Jul 1st, 2009 |
| Replies: 2 Views: 307 Wow! That you so much! That is exactly the kind of thing I was looking for! Thank youuuuuu! |
Forum: PHP Jun 30th, 2009 |
| Replies: 2 Views: 307 22 Hours Ago | Add to redhotspike's Reputation | Flag Bad Post
I have never used PHP before. I'm pretty hardcore with (x)HTML, JavaScript, CSS, and I also know C++.
Here's the thing - I need to... |
Forum: ASP Jun 29th, 2009 |
| Replies: 1 Views: 533 Ok - I have never used ASP before. I'm pretty hardcore with (x)HTML, JavaScript, CSS, and I also know C++.
Here's the thing - I need to create some sort of code that receives information from the... |
Forum: JavaScript / DHTML / AJAX Apr 23rd, 2009 |
| Replies: 1 Views: 849 Hey guys: I figured it out...feel free to use as long as ya give me credit :)
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"... |
Forum: JavaScript / DHTML / AJAX Apr 22nd, 2009 |
| Replies: 1 Views: 849 I'm supposed to switch the themes of the "headline" and the "text", but I can't seem to get it. Here's what I have so far...anyone have any ideas why it doesn't work? Thanks :)
<?xml... |
Forum: C++ Apr 5th, 2009 |
| Replies: 5 Views: 379 Ok here's the finished program :)
/*~~~prog3.cpp~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| "Waiting ...waiting... Next!" |
| Program... |
Forum: C++ Apr 2nd, 2009 |
| Replies: 5 Views: 379 ArkM: Thanks for the tip on inserting the code -- didn't realize there was a difference.
Also, this is a presentation, rather a work in progress: I felt like sharing:icon_cool:
And thanks Adam |
Forum: C++ Apr 2nd, 2009 |
| Replies: 5 Views: 379 Working on a simulation which closely resembles waiting in a line at a bank. Program runs the simulation based on the user's inputs of # of servers, simulation time, average time between arrival, and... |
Forum: C++ Mar 5th, 2009 |
| Replies: 7 Views: 1,260 Alrighty: here's the completed program -- one issue left is that if there are 2 entries with the same key, the program won't find it. Also, after the third choice, user must enter their choice a... |
Forum: C++ Mar 2nd, 2009 |
| Replies: 7 Views: 1,260 ****Note:
Program is not complete: I'm still working on bool erase (const KeyType key);
AND I'm still trying to figure out how to incorporate my Node *LinkedList::find(const KeyType key).... it's... |
Forum: C++ Mar 2nd, 2009 |
| Replies: 7 Views: 1,260 Ok...the insert function problem has been solved...
/*~~~linkedlist.h~~~*/
#include <iostream>
#include <string>
using namespace std;
typedef struct Articles ElementType;
typedef... |
Forum: C++ Mar 1st, 2009 |
| Replies: 7 Views: 1,260 typedef Node * NodePointer;
NodePointer is a pointer to a type of class Node. Thus, NodePointer nPtr = new Node(dataValue); is declaring nPtr as type NodePointer, and it is being set to a new... |
Forum: C++ Mar 1st, 2009 |
| Replies: 7 Views: 1,260 ok so i fiddle with it some more, managed to get the first node into the list ...here's the insert function (i didn't change any other parts of the program)
void LinkedList::insert(const... |
Forum: C++ Mar 1st, 2009 |
| Replies: 7 Views: 1,260 another thing to add - when i run the program, this is the error
Crawford:2000:EPa Diane Crawford Editorial pointers
3 [main] program2 3416 _cygtls::handle_exceptions: Exception:... |
Forum: C++ Mar 1st, 2009 |
| Replies: 7 Views: 1,260 Ok, so I am befuddled. Each individual file compile fine, no errors. When I compile all together and create an executable, no errors. But, when I run the program, I am getting an error. I have it... |
Forum: C++ Feb 28th, 2009 |
| Replies: 2 Views: 226 THANK you! ...I always forget about that part |
Forum: C++ Feb 28th, 2009 |
| Replies: 2 Views: 226 bool operator>=(const ElementType &e1, const KeyType &key);
I am trying to overload >= which compares the a string in struct e1 with a string. When I compile I get an error that:
'bool... |
Forum: C++ Feb 10th, 2009 |
| Replies: 7 Views: 992 Ok classes seem to be working fine -- I'm posting them in case anyone runs into this kind of program. They all compile without any errors :D
player.h
#include <iostream>
#include <string>... |
Forum: C++ Feb 9th, 2009 |
| Replies: 7 Views: 992 tictactoe.h
class Tictactoe
{
private:
int s[9];
int row, col;
char square[3][3];
char board[3][3]; |
Forum: C++ Feb 9th, 2009 |
| Replies: 7 Views: 992 Thank you. I took your advice and made some changes, as well as added some:
(just putting the class files down for now since they are what I'm struggling with)
tictactoe.cpp
#include... |
Forum: C++ Feb 8th, 2009 |
| Replies: 7 Views: 992 Hey there. I am taking a programming class using C++ and my assignment is to create "Tictactoe" using ObjectOrientedProgramming... The problem is I have no idea what I am doing...
I need to have a... |