Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
GKK Tools - Form, Menu, Comparison Tools
Message
De
17/08/2006 01:30:19
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Produits tierce partie
Titre:
GKK Tools - Form, Menu, Comparison Tools
Versions des environnements
Visual FoxPro:
VFP 9 SP1
Divers
Thread ID:
01146262
Message ID:
01146262
Vues:
111
I have updated the following tools (located in the downloads section):

GKK Form Editor
GKK Menu Editor
GKK Procedure Editor
GKK Comparison Tool

Please read the release notes for info. In particular, there was a critical error that could occur during the parsing of the code lines for syntax highlighting. This error would be caused by the editor form being out-of-focus and a native VFP dialog opened. This caused the _VFP.ActiveForm property to become undefined which is used in a call-back to the parser. This has been corrected. I had tried using:
IF VARTYPE(_VFP.ActiveForm) = "O"
  ...
ENDIF
to trap when the value would become undefined. However the test above would still cause the error as above. The fix was to use:
IF TYPE("_VFP.ActiveForm") = "O"
  ...
ENDIF
The first required the ActiveForm to be an actual object; the second does not. Not sure why the difference, but it now works as expected.

Greg Green
Répondre
Fil
Voir

Click here to load this message in the networking platform