Info
This question is closed. Reopen it to edit or answer.
I am trying to make data/variables that i can call in different functions in a GUI
1 view (last 30 days)
Show older comments
I am using a push button in a GUI to connect to an fpga which uses a an api to establish connections and communication. This part works, but when i need to call the variables created by the api in another function it says those variables don't exist. I have tried declaring the variables as
...
handles.myvariable1 = x;
handles.myvariable2 = y;
guidata(hObject,handles)
...
in the function that creates them but this still doesn't allow me to access them in other parts of the GUI. I'm not sure if this is relevant but the code uses the .NET framework to establish communication to the fpga. I'm just trying to figure out way so that these functions don't get lost when i run a different part of the GUI.
1 Comment
Geoff Hayes
on 21 Aug 2016
nnaeem - is the above code in your pushbutton callback? In the other parts of your code (presumably the other callbacks), how are you trying to access these variables? Please clarify and post code where necessary especially as to the need to call the variables created by the api in another function. Where and what is this function?
Answers (0)
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!