Calling Multiple GUI's
    4 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
I want to make an 'About Program' in my prog. So in the figure editor>Menu editor i made a tab called info, then 'About Program'. this made a callback:
% --------------------------------------------------------------------
function AboutProgram_Callback(hObject, eventdata, handles)
% hObject    handle to Info_1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
This should happen after pressing About program; call a new fig (gui), inside some text about the prog and a button OK to close fig.
my question is how do i make him call that fig inside the initial gui...
hope its clear
0 comentarios
Respuesta aceptada
  David
      
 el 2 de En. de 2013
        
      Editada: David
      
 el 2 de En. de 2013
  
      If I understand correctly, you've one GUI for whatever function your code is designed to carry out, and a second GUI that just contains some text with no interactive objects at all. If that's the case, just call the second GUI by its name.
AboutProgram;
I wouldn't normally call a form this way as it returns nothing to its parent form, but as it doesn't do anything I don't think it matters. Personally I'd find it easier to add some comment that can be accessed with help.
1 comentario
  vishnu r
 el 14 de Mayo de 2013
				If it contains some text with interactive objects, what will we do ????
Más respuestas (0)
Ver también
Categorías
				Más información sobre Creating, Deleting, and Querying Graphics Objects 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!


