A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hey Tushar,
I tried inserting a Lable1 with caption "Loading . . . " and set the "Visible" property to false And then made it visible by inserting "Me.Label1.Visible = True" in "UserName_AfterUpdate()" Event (Here data is being pulled from access database once users input their ID in UserName field)
So basically the code is something like this:
Private Sub UserName_AfterUpdate()
Me.Label1.Visible = True
'Code to pull info from access
Me.Label1.Visible = False
End Sub
It doesnt display the Lable1 "Loading . . ." when I insert a username and it pulls from access db. Am I missing something here?
Thanks in advance
An alternative to showing/hiding the label would be to always leave it visible. Start with no caption and change it appropriately to "Loading..." When done change the caption back to the zero length string "".
Tushar Mehta (Technology and Operations Consulting)
www.tushar-mehta.com (Excel and PowerPoint add-ins and tutorials)
Microsoft MVP Excel 2000-Present