PLBorkholder wrote:
> Thanks Gene, > You're correct if I'm working with just my VFP windows. > However, my goal is to mimimize all the windows on the desktop because > I'm calling a compiled VFP app via another software program that > allows triggers. When my messagebox's popup, they appear behind the > app. I want to miminize everything , then show my popup. > I know I can do it via Script object: CREATEOBJECT("shell.application") > however, I've been told not to depend on that because some > workstations have that option locked up. > Thus, I'm looking for the keyboard option that the VB code is given. > I can translate it all except the : > constant values: > Const KEYEVENTF_KEYUP = &H2 > Const VK_LWIN = &H5B > > #DEFINE KEYEVENTF_KEYUP ??? > #DEFINE VK_LWIN ??? > > I don't know how to interpret the &H2 or &H5B
they are HEX values 0x2 and 0x5B in VFP
©2004 Eugene Vital |