Hi,
Is anyone familiar with this problem in BorlandBuilderC++:
void Print(AnsiString Path){
Label1->Caption=Path.c_str();
}
...
Print("C:\Directory1\Directory2\Music.mp3");
When I pass this string to Print(AnsiString) and try to display it in Label1, I lose all '\' signs and text in Label1 looks like this : "C:Directory1Directory2Music.mp3"
Why is this like that?
Thank you!