How can I maximize/minimize a window of an Access application created from VB? I create the object by using:

Code:
Set appAccess = CreateObject("Access.Application")
appAccess.Visible = True
and I know that appAccess.hWndAccessApp will return the Access window handler. Does it exist an API function I can call to maximize/minimize it?

Thanks in advance.