
Enumerate through a Class module function names.
Good point... and I'll add that comment to the sample. Probably should add
output to file or something to make it easy to get the list.
--
Ken Halter
MS-MVP-VB
Please keep it in the groups..
Quote:
> Note that TLI will only work in the compiled EXE/DLL/OCX if the class is
> public. There is no runtime type information available for private
objects.
> Of course, private objects don't tend to change much between when you
> compile and run them, so it is easy enough to compile in a static set of
> data. -Matt
> > Here's one way... uses TLBINF32.DLL..
> > Enumerate Object Properties
> > http://www.vbsight.com/Code.htm
> > currently, the sample shows names of properties only... no types
> > --
> > Ken Halter
> > MS-MVP-VB
> > Please keep it in the groups..
> > > I have a class module that contains serveral functions thay I use
> > callbyname
> > > function to execute. I would like to build a listbox showing the name
of
> > all
> > > the functions in that class module. Is there a way to get a list at
> > runtime?
> > > Thanks Mark