PDA

View Full Version : COM Browser


PointOfLight
11-30-2006, 06:22 AM
I threw together this quick application to illustrate the use of some of the generic COM functions. It will show you a list of all properly registered COM and ActiveX objects, and show you the properties and methods of each one when you select it from the combo. Keep in mind that not all of the COM / ActiveX objects will work this way, so if you get an error, that doesn't necessarily mean the app did anything wrong.[br]1164867726_49_FT0_combrowser.zip

matteo.m
11-30-2006, 10:12 PM
ohhh brilliant code! thank a lot to share this

Heinz
12-04-2006, 04:29 PM
Great Work! Thanks a lot, Eric!

coolmobile
07-10-2007, 01:41 PM
Hello, when I run the demo, I got the error

PPL 1.25 Pro Compiler Error Report

error: (c:\ppl project\ft0_combrowser\combrowser_form.frm#form100 ) [Invalid number of input parameters at 'SORT' (6,3)]
error: (c:\ppl project\ft0_combrowser\combrowser_form.frm#form100 ) [Invalid number of input parameters at 'SORT' (56,3)]

Could you tell me how to fix it? Thanks.

kornalius
07-10-2007, 06:23 PM
The Sort() function now has three parameters.

Sort(ListVar$, AscendingOrder$, CaseSensitive$);

AscendingOrder$ will determine which way to sort. (boolean)
CaseSensitive$ is used for string lists only. (boolean)