G
Guest
I'm writting in VC++.net and my text box is not updating.
The gist of my code goes like this, it uses recursion and everything works, but the text box won't update. If I place a
Message box to check the string I'm using it the text box then displays the result correctly.
void file_copy(String *path)
{
String* number = "Files Left to Copy"
textboxfiles->Text = "Files Remaining;
File::Copy(path, Destination);
.....more code...
file_copy(new path);
}
The gist of my code goes like this, it uses recursion and everything works, but the text box won't update. If I place a
Message box to check the string I'm using it the text box then displays the result correctly.
void file_copy(String *path)
{
String* number = "Files Left to Copy"
textboxfiles->Text = "Files Remaining;
File::Copy(path, Destination);
.....more code...
file_copy(new path);
}