Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
CeeClone - Easy DocView Access
Message
From
06/06/2002 14:41:18
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Third party products
Title:
CeeClone - Easy DocView Access
Miscellaneous
Thread ID:
00665625
Message ID:
00665625
Views:
54
Frank:

You were good enough to include my request for the "Procedure Hopper". I thought I would share the following code with you (and everyone else too <s>).

In my Devsetup.prg, I have the following command :-
ON KEY LABEL SHIFT+F12 Do ToggleDocView.prg
When you want the Document View, you simply toggle it on and off with Shift+F11
*** ToggleDocView.prg

IF NOT WEXIST('Document View') OR NOT WVISIBLE('Document View')
	ACTIVATE WINDOW 'Document View' NOSHOW
	IF NOT EMPTY(WONTOP())
		ACTIVATE WINDOW (WONTOP())
	ENDIF
	=INKEY(.01, 'H')
	ACTIVATE WINDOW 'Document View'
ELSE
	HIDE WINDOW 'Document View'
ENDIF
* If in Codemine, add the following line to update toolbars.
* m.goApp.oStateManager.REFRESH('Window Change')
You can then have a nice big document view to help you find your functions and as soon as you want it out of view, Select Shift+F11 (and vice versa).
-=Gary
Next
Reply
Map
View

Click here to load this message in the networking platform