"ServerID must be a string" problem
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Nikolay Panasetsky
am 30 Nov. 2015
Kommentiert: Nikolay Panasetsky
am 30 Nov. 2015
I can not read the data from the dialogue box to connect the OPC server. The error occurs: "ServerID must be a string"
Here's the code:
function Newhost_Callback(hObject, eventdata, handles)
prompt = {'Host name:'};
dlg_title = 'Input';
num_lines = 1;
defaultans = {'Matrikon.OPC.Simulation.1'};
answer = inputdlg(prompt,dlg_title,num_lines,defaultans);
da = opcda('localhost', answer);
connect(da);
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 30 Nov. 2015
inputdlg() always returns a cell array, not a single string.
da = opcda('localhost', answer{1});
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!