I wish to Display a Label while I am updating a Listview containing file data.
I have the following Label code:
EZ_Label %FORM1_LABEL4, 34, 12, 24, 3.9375, "Main Music List|is being updated", "FC"
When I press the "Update" button, I use the following code:
EZ_SetDepth "Form1", 140, "F"
EZ_Sleep 2
the data updating then follows and when it has finished, I use:
EZ_SetText "Form1", 140, "Main Music List|has been updated"
EZ_Delay 2
EZ_SetDepth "Form1", 140, "B"
Unfortunately, when I click the "Update" button, all I get of the label is the border, no background colour or text.
When the update has finished I get the "Main Music List|has been updated" correctly displayed.
Is there any way I can display something to let the operator know the list is being updated without them having to take any action when it is finished?
I tried a Message Box but nothing happens until the operator hits "Okay", then there is a wait while the update takes place.
Can someone offer advice?