Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Class Browser Print ?
Message
General information
Forum:
Visual FoxPro
Category:
Object Oriented Programming
Miscellaneous
Thread ID:
00619555
Message ID:
00619860
Views:
11
Steve,

Here's a sample CB addin:
* cbmethods.prg
lparameter loBrowser

* make a pasteable list of methods

* attach with _obrowser.addin( "Clip The Methods", "cbmethods.prg" )

local i

_cliptext = ""

with loBrowser
   for i = 1 to .nMemberCount
      if ( .aMemberList[i,2] == "m" )
         _cliptext = _cliptext + .aMemberList[i,1] + chr(13) + chr(10)
      endif
   endfor
endwith
Then when you rightclick in a blank area of the CB you can select AddIns... and see another context menu with your addins.

>I am using VFP7's Object Browser to look at the PEMs from a .dll. I now need to output all of them to a text file for printing, but I don't see an option to do that. Help?
df (was a 10 time MVP)

df FoxPro website
FoxPro Wiki site online, editable knowledgebase
Previous
Reply
Map
View

Click here to load this message in the networking platform