Borrar filtros
Borrar filtros

pass data from gui to another

3 visualizaciones (últimos 30 días)
zeyneb khalili
zeyneb khalili el 13 de Mayo de 2017
Editada: zeyneb khalili el 14 de Mayo de 2017
I have two guis gui1 with pushbutton1 and gui2 with uitable1. How to update data of gui1 to uitable1 by clicking on pushbutton1? May you help me pleaase. I'm working with matlab 2009

Respuestas (2)

Jan
Jan el 13 de Mayo de 2017
Editada: Jan el 13 de Mayo de 2017
This is answered extensively by the comment given above by Stephen.
(@Stephen: Sorry for this parasitic answer. To add anything productive:)
It is recommended and very useful to search in the forum before asking a new question:
  1 comentario
Stephen23
Stephen23 el 13 de Mayo de 2017
@Jan Simon: no problem! As you can probably see from my other answers and comments, I am also a believer in giving links and showing people how to access information.

Iniciar sesión para comentar.


zeyneb khalili
zeyneb khalili el 14 de Mayo de 2017
When I tried this code in the source GUI:
if true
h = findobj('Tag','GUI2');
gdata = guidata(h);
set(gdata.uitable1,'data',get(handles.uitable9,'data'));
end
I had this error: H must be the handle to a figure or figure descendent.
  2 comentarios
Image Analyst
Image Analyst el 14 de Mayo de 2017
Wow, who told you to do that??? If you want to transfer the data from table 9 to table 1, get rid of all that and simply do
handles.uitable1.data = handles.uitable9.data;
zeyneb khalili
zeyneb khalili el 14 de Mayo de 2017
Editada: zeyneb khalili el 14 de Mayo de 2017
uitables are in different guis. gui1 in uitable9. gui2 in uitable1. This code is in pushbutton1_callback in gui1

Iniciar sesión para comentar.

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by