Forum: C++ Apr 28th, 2006 |
| Replies: 2 Views: 6,748 Hi I was just wondering how you change the text colour of only some of the text in a console when you are using cout to display your text.
I tried using
system("Color XY");
obviously where X... |
Forum: C++ Apr 28th, 2006 |
| Replies: 8 Views: 11,790 thanks for for help. I've programmed a simple runge-kutta function, it's not a good approximation but according to my lecturer it's good enough for this project |
Forum: C++ Apr 16th, 2006 |
| Replies: 8 Views: 11,790 does anyone know where I can find some help on integration functions in c++? |
Forum: Geeks' Lounge Sep 19th, 2004 |
| Replies: 85 Views: 15,785 South Africa is really cool, all the game park and wildlife everywhere |
Forum: Java Sep 19th, 2004 |
| Replies: 0 Views: 1,684 whenever I try to use \t to insert a tab space into one of my Strings it just inserts it as an \t instead of an actual tab space. I have also tries using \u0009, but this one doesn't even do... |
Forum: Java Sep 3rd, 2004 |
| Replies: 2 Views: 23,945 Does anyone know how to insert a .jpeg into the JPanel of a GUI window? |
Forum: Java Aug 28th, 2004 |
| Replies: 3 Views: 5,767 By the way if it helps my database has the following columns in it in this order:
ID, make, model, year, price
(ID is just a sequencial numbers for every record)
I need to put my values from my... |
Forum: Java Aug 28th, 2004 |
| Replies: 1 Views: 4,204 Why not try something like this:
for(int x = 0; x < word.length() - 1; x++)
{
String letter = word.charAt(x); //you could make letter a char is you want
//write letter to the file
} |
Forum: Java Aug 20th, 2004 |
| Replies: 2 Views: 3,798 for an integer to string you can also use
String s = String.valueOf(intNum); |
Forum: Posting Games Aug 20th, 2004 |
| Replies: 7,595 Views: 663,647 |
Forum: Java Aug 20th, 2004 |
| Replies: 3 Views: 5,767 Ok first of all I managed to get it to write to the array by changing the code in my fileToArray method to this:
public void fileToArray() throws SQLException
{
loadODBC ();//calls method... |
Forum: Geeks' Lounge Aug 14th, 2004 |
| Replies: 146 Views: 30,069 I'm a fan of anime.
One of my current favourites is Naruto, I'm only up to episode 83 of the anime but I've read up to chapter 225 of the manga and I can't wait to see more of it even though I... |
Forum: DaniWeb Community Feedback Aug 14th, 2004 |
| Replies: 34 Views: 8,654 So how much reputation points would you need before you'll actually start affecting other people's points? |
Forum: Geeks' Lounge Aug 14th, 2004 |
| Replies: 5 Views: 3,022 1. There are 5 houses in 5 different colours. In each house lives a
person with a different nationality.
2. The 5 owners drink a certain type of beverage, smoke a certain brand
of cigar, and... |
Forum: Java Aug 14th, 2004 |
| Replies: 3 Views: 5,767 Well basically for the assignment I have to write a project that reads data from a .mdb database file and stores this data into a 2D array, then lets the user manipulate the data in the array (stuff... |