Forum: C++ Oct 20th, 2005 |
| Replies: 54 Views: 81,934 Anyone any dealings with "C++ How To Program" 5th Edition? Work ordered it for me and I'm reluctant to use it if it would teach bad habits as has been suggested in one review that i have read |
Forum: C++ Oct 14th, 2005 |
| Replies: 3 Views: 3,204 OK here is what I've got at the minute:
String fixString(inputString)
{
result = inputString;
int string_size = result.Length();
while(result.Pos(" "))
{
int space... |
Forum: C++ Oct 14th, 2005 |
| Replies: 3 Views: 3,204 Hello, anyone familiar with ansiString?
Have a problem involving a string "1 1", should read "11".
I want to get rid of the space in the middle. Can't change it to a character string or... |
Forum: C Sep 26th, 2005 |
| Replies: 7 Views: 2,130 That seems a bit overkill, why not just cast the character to an integer and add the number then recast back to character? This also deals with the idea of outputting in the same case as was input. ... |
Forum: C Sep 14th, 2005 |
| Replies: 0 Views: 1,303 Hello has anyone any experience of using log4cpp on borland builder 6, the open source code has a bcb5 project but there are build errors when this is transported to builder 6.. it's frustrating.
... |
Forum: C++ Sep 9th, 2005 |
| Replies: 2 Views: 3,499 Thanks Dave. Maybe I should have explained my problem better though. I am getting a character string that represents a line in an image, in order to do a pixel count for that line of the image I... |
Forum: C++ Sep 8th, 2005 |
| Replies: 2 Views: 3,499 Im attempting to do bitwise operations on a character string and want to use the bitset template. I am having some trouble, it doesnt seem to like to be constructed using a char* string or... |
Forum: C++ Aug 26th, 2005 |
| Replies: 2 Views: 4,445 Cheers, I'll give it a go! |
Forum: C++ Aug 25th, 2005 |
| Replies: 2 Views: 4,445 Hello I'm interested in manipulating a *.tif file using C++. I am aware of libtiff which features library files and utilities for tiff manipulation but this seems largely C based and also i'm... |
Forum: C++ Jul 25th, 2005 |
| Replies: 2 Views: 12,128 Thanks very much that seems do have done the trick! Won't know for sure though until i'm back in tomorrow! ;)
Cheers though It's a great help cause that was the sticking point. |
Forum: C++ Jul 25th, 2005 |
| Replies: 2 Views: 12,128 I am currently writing a C++ program that uses a external library and engine that is primarily based in C. I am attempting to load an image file and the function requires that the argument be passed... |