I got this code from someone here to refresh folders in Windows Explorer with a command button. It works great in Win98 but not in Win2k. Does anyone know the code for that?
Option Explicit
AppActivate "Exploring", True
SendKeys "{F5}", True
Printable View
I got this code from someone here to refresh folders in Windows Explorer with a command button. It works great in Win98 but not in Win2k. Does anyone know the code for that?
Option Explicit
AppActivate "Exploring", True
SendKeys "{F5}", True
What about sending shortcut keys to pont to the view menu, then refresh, something like -
orCode:Sendkeys "%VR"
I haven't tested this as I haven't got windows 2000 on this Pc. Hope this helps you though.Code:Sendkeys "%V"
Sendkeys "R"
No, that doesn't work but thanks anyway