Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Menu.mpr - exe can't find it
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Problèmes
Divers
Thread ID:
00120370
Message ID:
00120385
Vues:
29
Thanks, I'll give it a try with a simple DO menuname.mpr

The code for the wzApplication.doMenu method is appended.

If I read you correctly, it's the .mnx file that's important, rather than the mpr. The mnx file is included (I've just checked).

LPARAMETERS tcFileName
LOCAL lcFileName

lcFileName=ALLTRIM(tcFileName)
IF EMPTY(lcFileName)
RETURN .F.
ENDIF
lcFileName=LOWER(FULLPATH(lcFileName))
IF NOT "."$lcFileName
lcFileName=lcFileName+".mpr"
ENDIF
IF NOT FILE(lcFileName)
this.FileNotFoundMsgBox(lcFileName)
RETURN .F.
ENDIF
DO (lcFileName)
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform