How call another GUI window on push button event??
17 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
how can call another GUI window using this callback function.
"function pushbutton1_Callback(hObject, eventdata, handles)"
Another GUI window is already created. I only just want to call that window using this function....
Please help..........
1 comentario
Respuestas (1)
Ines laz
el 10 de Mayo de 2012
Hi!
just write the name of the second window,
% --- Executes on button press in pushbutton1.
function pushbutton1_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton21 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
window2
Good luck!
1 comentario
Ver también
Categorías
Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!