Forum: C++ Oct 20th, 2005 |
| Replies: 54 Views: 83,863 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,243 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,243 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 9th, 2005 |
| Replies: 2 Views: 3,560 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,560 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,548 Cheers, I'll give it a go! |
Forum: C++ Aug 25th, 2005 |
| Replies: 2 Views: 4,548 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,539 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,539 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... |