I have a button in my access form when clicks check the code to search for data in excel cells. It takes some time to complete the process. By then I need to display Please wait for users.
I call this method but not working
Sub plswaitmsg()
Dim statusmsg As Variant
statusmsg = SysCmd(acSysCmdRemoveMeter)
statusmsg = SysCmd(acSysCmdSetStatus, "Loading dropdown data,please wait.")
End Sub
source
share