VB6 newbie, C oldie can't get this code to work. I want the Label2 caption to say "processing" while the big C dll is running (several minutes). The mouse pointer changes to an hourglass as expected, but the Label2 caption remains blank until the dll finishes, at which time it says "complete", as expected. The result is the same if the dll is replaced with a simple delay. (The dll and the rest of the VB6 program work fine.)
Private Sub Command1_Click()
Label2.Caption = "processing"
Form1.MousePointer = 11
Call BigCdll(xyz)
Form1.MousePointer = 0
Label2.Caption = "complete"
End Sub
Private Sub Command1_Click()
Label2.Caption = "processing"
Form1.MousePointer = 11
Call BigCdll(xyz)
Form1.MousePointer = 0
Label2.Caption = "complete"
End Sub