Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
GKK Tools - Form, Menu, Comparison Tools
Message
From
17/08/2006 01:30:19
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Third party products
Title:
GKK Tools - Form, Menu, Comparison Tools
Environment versions
Visual FoxPro:
VFP 9 SP1
Miscellaneous
Thread ID:
01146262
Message ID:
01146262
Views:
110
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
Reply
Map
View

Click here to load this message in the networking platform