|
actxcontrollist
List all currently installed ActiveX controls
Syntax
C = actxcontrollist
Description
C = actxcontrollist returns a list of each control, including its name, programmatic identifier (or ProgID), and filename, in output cell array C.
Examples
Here is an example of the information that might be returned for several controls:
list = actxcontrollist;
for k = 1:2
sprintf(' Name = %s\n ProgID = %s\n File = %s\n', ...
list{k,:})
end
ans =
Name = ActiveXPlugin Object
ProgID = Microsoft.ActiveXPlugin.1
File = C:\WINNT\System32\plugin.ocx
ans =
Name = Adaptec CD Guide
ProgID = Adaptec.EasyCDGuide
File = D:\APPLIC~1\Adaptec\Shared\CDGuide\CDGuide.ocx
See Also
actxcontrolselect, actxcontrol
Add by Pancho
You can edit it here
|
|
Adding comments is available only for registered users.
|
|
PycckaR BepcuR
Articles

Library

Downloads

|