Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
PEM Editor 4.10 released on Codeplex
Message
From
20/08/2009 14:42:05
 
General information
Forum:
Visual FoxPro
Category:
Other
Environment versions
Visual FoxPro:
VFP 9 SP2
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01418479
Message ID:
01419311
Views:
55
>With this library (one class is cursoradapter and another is custom) the error is 100% reproducible and unavoidable. Is there a simple way to temporary turn PEMEditor off and on or I have to un-install and re-install?

I created the following when I was having trouble with PEME working with OLE based classes (this now has been fixed by Jim) to toggle PEME off/on:
USE (_FOXCODE) IN 0 AGAIN SHARED
SELECT foxcode
LOCATE FOR type="M" .AND. abbrev="NEW PROPERTY..."
IF FOUND()
	IF DELETED()
		RECALL
	ELSE
		DELETE
	ENDIF
ENDIF
LOCATE FOR type="M" .AND. abbrev="NEW METHOD..."
IF FOUND()
	IF DELETED()
		RECALL
	ELSE
		DELETE
	ENDIF
ENDIF
LOCATE FOR type="M" .AND. abbrev="EDIT PROPERTY/METHOD..."
IF FOUND()
	IF DELETED()
		RECALL
	ELSE
		DELETE
	ENDIF
ENDIF
USE
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform