Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

need help in Matlab; ActiveX

Status
Not open for further replies.

snowwhite88

Junior Member level 2
Joined
Jan 15, 2012
Messages
23
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,283
Activity points
1,414
hello all
i need help
i dont know why the instruction ActiveX
and here is the problem

>> cst = actxserver('CSTSTUDIO. Application');

??? Error using ==> actxserver at 91
Server creation failed. Invalid ProgID 'CSTSTUDIO. Application'

how can i solve it please help me
Many thanks
 

This thread may be help you
https://www.edaboard.com/threads/176129/

Try this for ProgID
Code:
list = actxcontrollist;
for ii = 1:length(list)
if ~isempty(findstr('CSTSTUDIO',[list{ii,:}]))
s = sprintf(' Name = %s\n ProgID = %s\n File = %s\n', ...
list{ii,:})
end
end
 

but cst microwave studio is not a madia player its a program for simulation a microwave components
so this avctivex must be open the program automatically but this is not happening ???????????????

thanks
 

but cst microwave studio is not a madia player its a program for simulation a microwave components

correct. this is for study that example and try to develop your code

so this avctivex must be open the program automatically but this is not happening ???????????????

did you able to verify progid?

thanks
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top