How to access the variables form one function to another function in GUI?????

16 visualizaciones (últimos 30 días)
sonu
sonu el 22 de Dic. de 2017
Comentada: Geoff Hayes el 22 de Dic. de 2017

Hai, Kindly help me to solve this issue,Hereby my code is,

function PFM Callback .........
[filename pathname] = uigetfile({'*.txt'},'FILESELCTOR',Multiselect','on')
aa = {'applecongig.txt';'nokiadata.txt'}
if isequal(filename(1),aa(1))&& isequal(filename(2),aa(2))
fullpathname1 = strcat(pathname,filename(1))
fullpathname1 = strcat(pathname,filename(2))
set(handles.text1,'string',fullpathname1)
handles.fullpathname1 = fullpathname1
set(handles.text2,'string',fullpathname2)
handles.fullpathname2 = fullpathname2;
guidata(hObject,handles)
function validate ..........
filename1 = handles.fullpathname1
filename2 = handles.fullpathname2
[y] = check_check[filename1,filename2] 

%%%%%%%%%%% I need to access the fullpathname1,fullpathname2 which I used in first function,so that I can this function ([y] = check_check[filename1,filename2])

  1 comentario
Geoff Hayes
Geoff Hayes el 22 de Dic. de 2017
sonu - what are the inputs to your validate function? How does it get called and does it have access to the handles structure? Please provide more details.

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Workspace Variables and MAT Files 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