for example, lets say i got a edit box that i want to give the value "hi",
n = "hi"
UpdateData(0);
MessageBox("hi");
for
{
.... // alot of crap here
}
now the problem is, if i didnt put the message box, the program would first comlete all the damn for looping and then update the edit box to say hi, is there a way for force the program to show hi in the edit box before it starts all its longgggg for loop coding, instead of using MessageBox() to freeze the program allowing it to update (forcing it)