Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Wrapper for Code Mine Inspector From Files Section
Message
From
04/08/1999 10:03:08
Vinod Parwani
United Creations L.L.C.
Ad-Dulayl, Jordan
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Wrapper for Code Mine Inspector From Files Section
Miscellaneous
Thread ID:
00249706
Message ID:
00249706
Views:
46
I've written a (kindof) wrapper for Codemine inspector(code is given below), what i want is to inspect objects created from custom classes to be inspected in it.. (Not forms and toolbars)...

One way I thought was to add custom object in _Screen, but don't know how to do it... Is there any better way ?? or if somebody knows how to inspect objects from custom classes...

TIA

**********************
Below is my code
**********************

Local oTemp && Temporary Object to change few properties

DEFINE PAD _Inspector OF _MSYSMENU PROMPT "Inspector" COLOR SCHEME 3 ;
AFTER _MWINDOW KEY F8 ;
MESSAGE 'Open the CodeMine Object Inspector'
ON SELECTION PAD _Inspector OF _MSYSMENU DO imenu
* (HOME() + 'Inspect.app')

Do Inspect && Running the Inspector

* Changing Few Properties of inspector form, as No Maximize button
* Left, width, height etc. + Enabling the Inspector to Detect
* Ctrl + Shift + Left Click
*

oTemp=_screen.Activeform && Getting Reference of Inspector form

With oTemp

.Width = 700
.Height = 400
.Left = 31
.Top = 20
.ChkToolIndicatorButtonInspector1.value=.t.

Endwith

Release oTemp
Next
Reply
Map
View

Click here to load this message in the networking platform