vote up 0 vote down star

I'm getting this worthless error in my code. it's very consistant and restarting the compiler hasn't done anything. Has anyone else ever solved this?

while( int CharPos = _Message.Pos(_What) )
{
    _Message.Insert( _With, CharPos);
    _Message.Delete(CharPos + 1, 1);
}
flag

3 Answers

vote up 1 vote down

This is expected to be addressed in the soon to be released Update 3 for RAD Studio 2009.

link|flag
Thanks for the update! – Mihai Limbasan May 9 at 8:51
This update was released today. – David Dean - Embarcadero May 28 at 23:55
vote up 2 vote down

You could:

Edit: By the way, have you tried compiling the offending source file (or at least a minimal skeleton file containing just a main() and the offending code) with the command line compiler? BCB tends to hide a lot of detailed error info when compiling from the IDE - using the command line compiler tends to show the real error. Not foolproof, but worth a shot.

link|flag
vote up 0 vote down check

Well... apparently the compiler breaks when you try to declare an int in the while loop's condition.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.