Search Results

Showing results 1 to 40 of 154
Search took 0.01 seconds.
Search: Posts Made By: tones1986
Forum: PHP Jul 29th, 2009
Replies: 1
Views: 170
Posted By tones1986
I have attached my current database script. So if you really want to spend some time seeing how much of a mess im in, you can run this and test some sql statements with it!

Thank you for taking...
Forum: PHP Jul 29th, 2009
Replies: 1
Views: 170
Posted By tones1986
Hey all. Me again.

I am working with a database that contains data about multiple cruises. I am setting up a site that will allow the user to select multiple things. These include:

Name of...
Forum: PHP Jul 29th, 2009
Replies: 2
Views: 176
Posted By tones1986
Awesome. That got it. Thanks a ton!
Forum: PHP Jul 29th, 2009
Replies: 2
Views: 176
Posted By tones1986
Hey all i have the following code:


<?php include 'config.php'; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">...
Forum: Monitors, Displays and Video Cards Jul 24th, 2009
Replies: 7
Views: 493
Posted By tones1986
I have attached a file with the dxdiag information for your review. Any other information you need just let m eknow. Thank you guys.

I posted the file under my website because the attachment link...
Forum: Monitors, Displays and Video Cards Jul 24th, 2009
Replies: 7
Views: 493
Posted By tones1986
If there is no good solution, would buying a newer card, say a nvidia 280 be better? Surely 2 of my current cards equals a base range newer card?!
Forum: Monitors, Displays and Video Cards Jul 24th, 2009
Replies: 7
Views: 493
Posted By tones1986
Hey all - i am currently running two of the following cards in SLI:

BFG NVIDIA GeForce 8800 GTS OC2 320MB PCIe

I can run the most basic games nice with them without a problem. But for whatever...
Forum: PHP Jul 21st, 2009
Replies: 2
Views: 893
Posted By tones1986
I have created a drop down list from a SQL query as follows:


<?php
echo '<form action ="boat_info.php" method="POST">';
$query = "select SHIP_NAME from SHIP";
$result = mysql_query($query,...
Forum: MySQL Jul 16th, 2009
Replies: 5
Views: 371
Posted By tones1986
Alright got myself a good bit further in figuring out how to insert my variables into the query. Basically i had to store multiple sections of the query then strcat() the inputed data into the query...
Forum: MySQL Jul 15th, 2009
Replies: 5
Views: 371
Posted By tones1986
My idea is to get the order number from the row[0] part of the query you helped me create in the first post above. Hopefully i can make this happen in my c++.

Assuming i could do something like:
...
Forum: MySQL Jul 15th, 2009
Replies: 5
Views: 371
Posted By tones1986
Awesome! Thank you Menster! I knew it was something as simple as that - but i couldn't put the two parts together correctly!

Now i have the data i want, i am using c++ to create a program that...
Forum: MySQL Jul 15th, 2009
Replies: 5
Views: 371
Posted By tones1986
I ran this query on my database:

select O.ORDER_NUM, O.ORDER_DATE, O.CUSTOMER_NUM, C.CUSTOMER_NAME, C.STREET, C.CITY, C.STATE, C.ZIP from CUSTOMER C, ORDERS O where O.CUSTOMER_NUM =148 and...
Forum: C++ Apr 20th, 2009
Replies: 1
Views: 237
Posted By tones1986
Hey all, i am working on a project in which i read thw following data file:

6
CSCI240 CSCI241
CSCI241 CSCI340
CSCI340 CSCI480
CSCI480 CSCI580
CSCI340 CSCI580
CSCI463 CSCI480
Forum: C++ Apr 8th, 2009
Replies: 4
Views: 551
Posted By tones1986
Here is the zip file requested.
Forum: C++ Apr 7th, 2009
Replies: 4
Views: 551
Posted By tones1986
Hey all. I have worked with a project to create a basic student database/registration system for the past 4-5 projects... slowly adding more functionality or using different containers and classes...
Forum: C++ Mar 13th, 2009
Replies: 8
Views: 869
Posted By tones1986
Have uploaded my code for review. I am having a problem within my Registration.h file. This is because for whatever reason i cannot use a function call, getGrade() because i do not have access to it...
Forum: C++ Mar 13th, 2009
Replies: 8
Views: 869
Posted By tones1986
Nevermind. Got it working. Had to change my 2nd while statement to have courseID == "$" and then removed the if statement at the end of the while. Will have other issues, so will leave post as...
Forum: C++ Mar 13th, 2009
Replies: 8
Views: 869
Posted By tones1986
I am still working on this, and have come up with this function that will read in from file multiple students. I know you have said that i should not deal with a marker, but my teacher pretty much...
Forum: C++ Mar 10th, 2009
Replies: 8
Views: 869
Posted By tones1986
Also, i am trying to work with the function i supplied above... If the courseID == "$" then you reach the end of the current students data...how then, can i set it up so that a new Student object is...
Forum: C++ Mar 10th, 2009
Replies: 8
Views: 869
Posted By tones1986
Thats a good idea, but the file i use may be different to the one being sued to grade the project. It will not be true that each student has 3 classes etc. Therefore, i need to use a system that...
Forum: C++ Mar 10th, 2009
Replies: 8
Views: 869
Posted By tones1986
Hi all,

I recently finished working on a project that was to create a database type system for a student registration system. I created my own list class and stack to store the data... i create...
Forum: C++ Feb 20th, 2009
Replies: 2
Views: 1,289
Posted By tones1986
hi all. in a recent project i created a linked list to store a students course data...such as course ID, year taken, semester taken, and final grade. This program worked without any problems. now, my...
Forum: C++ Feb 17th, 2009
Replies: 12
Views: 1,207
Posted By tones1986
Thank you for your help with this. My only question/concern involves 2 things. First off, what did you do with the function that is in my Student.cpp file (it is called checkCourseTaken) and returns...
Forum: C++ Feb 16th, 2009
Replies: 12
Views: 1,207
Posted By tones1986
At the present time, we are only using one student. The file i uploaded is the file i will be working with for the forseeable future. Down the road, i am sure more students will come into play, as...
Forum: C++ Feb 16th, 2009
Replies: 12
Views: 1,207
Posted By tones1986
That you for your reply to my questions in great detail. I have the program running exactly how you have it (for the most part)... i did copy / paste your corrections etc. BUT the problem is that the...
Forum: C++ Feb 11th, 2009
Replies: 12
Views: 1,207
Posted By tones1986
The code posted above in my original code works ONLY if you try to 'checkCourseTaken' the first course in the list... try it yourself,....

Check the course you add at the start of the program,...
Forum: C++ Feb 10th, 2009
Replies: 12
Views: 1,207
Posted By tones1986
I have done something similar to what you mentioned and i get something similar to this for my output for this part:

if(c4.getCourseID() == "")
cout << endl << "*** COURSE NOT TAKEN ***" <<...
Forum: C++ Feb 10th, 2009
Replies: 12
Views: 1,207
Posted By tones1986
Hi all. I am finishing up a project previously posted. I am to create a student 'database' that consist of one student and X number of classes the student has taken. My problem now is that i cannot...
Forum: C++ Feb 7th, 2009
Replies: 10
Views: 1,215
Posted By tones1986
Thanks for your help so far. I have got emails from my TA that informed me of a certain thing i was stuck on, and i also restarted my project using a slightly different drive program. I have got to...
Forum: C++ Feb 6th, 2009
Replies: 10
Views: 1,215
Posted By tones1986
courseinfo.h(28) : error C2061: syntax error : identifier 'Student'
courseinfo.cpp(137) : error C2061: syntax error : identifier 'Student'
courseinfo.cpp(140) : error C2065: 's' : undeclared...
Forum: C++ Feb 6th, 2009
Replies: 10
Views: 1,215
Posted By tones1986
Originally i thought that would be simple. I just attempted that and here is what i did:
CourseInfo.h

void addCourse(string, CourseInfo, Student);

CourseInfo.cpp

void...
Forum: C++ Feb 6th, 2009
Replies: 10
Views: 1,215
Posted By tones1986
There is a problem with this logic though. The way in which i am told to set this up, i have to call addCourse from the readinfromfile() function within the courseInfo.h file. This addCourse() calls...
Forum: C++ Feb 6th, 2009
Replies: 10
Views: 1,215
Posted By tones1986
I have a SinglyLinkedList object in my Student.h file. Is this the sort of thing you are talking about? I have that there and mention it when doing my readinfromfile() function within the student.h...
Forum: C++ Feb 6th, 2009
Replies: 10
Views: 1,215
Posted By tones1986
Hi All,

I am working on a project and have come across a slight problem. I have a file i am reading in that consists of the following:

John Smith 333222333 01/01/80 M z11119
cs111 2008 fall a...
Forum: C++ Feb 5th, 2009
Replies: 9
Views: 884
Posted By tones1986
Alright guys - i have figured out my last question, and as always have come across a myriad of other things i am unsure of. First off, i am getting a couple of errors i am unsure to their meaning:
...
Forum: C++ Feb 5th, 2009
Replies: 9
Views: 884
Posted By tones1986
Hey guys - thanks a ton for all the help so far. Im getting there, at least so i think.

My next question concerns my input. I have to read in from a file and create the student object, and set the...
Forum: C++ Feb 4th, 2009
Replies: 9
Views: 884
Posted By tones1986
The above post is a big mistake. I was referencing the incorrect singlylinkedlist.h file when trying to compile. the file i was using at the time had no class definition...obvious mistake there! i...
Forum: C++ Feb 4th, 2009
Replies: 9
Views: 884
Posted By tones1986
I thought i did have it: (SinglyLinkedList.h)


template <class ItemType>
class SinglyLinkedList
{
public:
SinglyLinkedList() { head = tail = 0;}
~SinglyLinkedList();
int isEmpty()...
Forum: C++ Feb 4th, 2009
Replies: 9
Views: 884
Posted By tones1986
That would help huh? Sorry! My apologies!

Should be 'working' now in terms of needed files to attempt a compile!
Forum: C++ Feb 4th, 2009
Replies: 9
Views: 884
Posted By tones1986
Hey all. I have worked on this in a previous post, but because of the huge difference in work needed, i have reposted it here.

First off, i created a project that would input data from keyboard of...
Showing results 1 to 40 of 154

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC