Consultor Eletrônico



Kbase P102349: How to start the MS Access application on the click of a button?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   3/22/2005
Status: Unverified

GOAL:

How to invoke MS Access application on the click of a button?

FIX:

Put the following code behind the CHOOSE trigger of the BUTTON widget:
DEFINE VARIABLE appAccess AS COM-HANDLE NO-UNDO.
CREATE "Access.Application" appAccess.
appAccess:VISIBLE = TRUE.