G
Guest
I have a form that is copying files using fso.copyfile.
This all works great...however I want to display messages on the form in a
text box informing the user about the copying as there are several files
being copied. So I...
me.message_text = "Copying File 1"
fso.copyfile.....................
me.message_text = "Copying File 2"
fso.copyfile.....................
me.message_text = "Copying File 3"
fso.copyfile.....................
me.message_text = "Copying File 4"
fso.copyfile.....................
and so on and so on...when I run the form, the first message text is
displayed, but none of the subsequent messages. So I added me.Repaint after
each message, same thing, even tried adding 3 me.repaints after each message
and still no message change. How can I force the form to be updated with
each message_text while it's performing the file copies?
thanks in advance for your help!
This all works great...however I want to display messages on the form in a
text box informing the user about the copying as there are several files
being copied. So I...
me.message_text = "Copying File 1"
fso.copyfile.....................
me.message_text = "Copying File 2"
fso.copyfile.....................
me.message_text = "Copying File 3"
fso.copyfile.....................
me.message_text = "Copying File 4"
fso.copyfile.....................
and so on and so on...when I run the form, the first message text is
displayed, but none of the subsequent messages. So I added me.Repaint after
each message, same thing, even tried adding 3 me.repaints after each message
and still no message change. How can I force the form to be updated with
each message_text while it's performing the file copies?
thanks in advance for your help!