Forum: C++ Oct 14th, 2009 |
| Replies: 6 Views: 228 Based on what you needed it would make sense for the C++ app to listen (be the server) and PHP to send the data to the server (client) |
Forum: C++ Sep 23rd, 2009 |
| Replies: 2 Views: 266 _ is usually associated with gettext with deals with text localization. |
Forum: C++ Sep 15th, 2009 |
| Replies: 3 Views: 211 You might want to try compiling and working your way through the errors. These two lines will definitely cause issues.
// call function calcAverage
int calcAverage(int score1, int score2, int... |
Forum: C++ Aug 12th, 2009 |
| Replies: 1 Views: 212 I'll help you first by saying this isn't your first post, it's your 11th, you should know how to use code tags by now. You should also know that we don't give help to those who don't show effort. |
Forum: C++ Aug 12th, 2009 |
| Replies: 3 Views: 369 The same exact way you did with Person except replace Person with Patient
class Patient : public Person {};
class StudentPatient : public Patient {};
... |
Forum: C++ Aug 5th, 2009 |
| Replies: 6 Views: 385 http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.pdf |
Forum: C++ Jul 22nd, 2009 |
| Replies: 3 Views: 598 Cool, how's that working out for you?
http://www.daniweb.com/forums/announcement8-2.html |
Forum: C++ Jun 3rd, 2009 |
| Replies: 5 Views: 366 Yes, turn that in, quick, before it gets deleted! |
Forum: C++ May 8th, 2009 |
| Replies: 5 Views: 468 See, you're more than capable of doing what the description says, you're just overthinking it. Follow the directions closely and read in your book about Inheritance and Operator Overloading and... |
Forum: C++ Oct 6th, 2007 |
| Replies: 1 Views: 3,714 This is just a little something for those of you used to using the Eclipse IDE, it's syntax highlighting almost identical to Eclipse save a bit of enhancement. Eclipse doesn't highlight ints, octal... |
Forum: C++ Aug 18th, 2007 |
| Replies: 1 Views: 970 For those of you who haven't heard of or used AutoHotKey check it out here http://www.autohotkey.com (http://www.autohotkey.com/) for the rest of you I made a really simple script for Dev-C++ to add... |
Forum: C++ Jul 27th, 2007 |
| Replies: 12 Views: 3,581 Looks to me like Daniweb parsed the greater and less than into html entities or you accidentally copied and pasted from a html document on the CD. |
Forum: C++ Jul 1st, 2007 |
| Replies: 5 Views: 1,553 Well there are a few things you would have to ask yourself:
What is the theme going to be?
Automated or Manual combat system?
Online? (will you need to code sockets?)
Encryption for... |