Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

outlook form how to change the textbox value before and after a long p

Status
Not open for further replies.

AnNguyen

Programmer
Jul 18, 2002
33
0
0
US
Hello All

How can i change the textbox value before and after a long process routine? here is my code and the Textbox is preset to blank

Sub cmdShow_ click()
DescriptionMsg.Value = "Scanning in progress... "

showMessages 'long process atleast half a minute

DescriptionMsg.Value = "Scanning finished... "

end sub

The first textbox value never shown up unless there i put a msgBox after it (which is inconvenient).

Is there any way to achieve this without the msgbox statement? and if so how?

Thank you


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top