Thread Subject: declaring global variables: GUI'S

Subject: declaring global variables: GUI'S

From: simon ott

Date: 17 Jan, 2009 20:40:18

Message: 1 of 3


Hello,
I want to declare global variables so that I could access them from my different GUI's. I declared then in OpeningFcn of every GUI.

function Prog_OpeningFcn(hObject, eventdata, handles, varargin)
global A
global A

but I still can not eccess them
some hint please ?

simon

Subject: declaring global variables: GUI'S

From: Sadik

Date: 17 Jan, 2009 20:44:02

Message: 2 of 3

"simon ott" <simon_ott@yahoo.com> wrote in message <gktfni$je$1@fred.mathworks.com>...
>
> Hello,
> I want to declare global variables so that I could access them from my different GUI's. I declared then in OpeningFcn of every GUI.
>
> function Prog_OpeningFcn(hObject, eventdata, handles, varargin)
> global A
> global A
>
> but I still can not eccess them
> some hint please ?
>
> simon

Hello Simon,

I hope this helps [especially section 7]:

Hello Cesar,

I believe Section 7 of the following link is the one you are looking for:

http://www.mathworks.com/support/tech-notes/1200/1205.html

Subject: declaring global variables: GUI'S

From: Steven Lord

Date: 19 Jan, 2009 15:52:41

Message: 3 of 3


"simon ott" <simon_ott@yahoo.com> wrote in message
news:gktfni$je$1@fred.mathworks.com...
>
> Hello,
> I want to declare global variables so that I could access them from my
> different GUI's. I declared then in OpeningFcn of every GUI.
>
> function Prog_OpeningFcn(hObject, eventdata, handles, varargin)
> global A
> global A
>
> but I still can not eccess them
> some hint please ?

If you declare a variable as global, then you must declare it as global in
EVERY function in which you want to access it via the global workspace.
That means that you will need to declare A as global in every callback
function that wants to use this variable in each of your GUIs. It also
means that if someone else's function uses A as a global variable then they
can potentially interfere with the operation of your GUI by changing A
without your GUI functions' knowledge. For these reasons and others, using
global variables is discouraged. Instead, you could store your data in the
handles structures for your GUIs (and give other GUI functions access to
those handles structures if they need access to the data in a particular
GUI), to store them in the UserData for your GUI, etc.

Look at these pages from the documentation for other techniques you can use
to share data between callbacks and between GUIs:

http://www.mathworks.com/access/helpdesk/help/techdoc/creating_guis/brq3263.html

http://www.mathworks.com/access/helpdesk/help/techdoc/creating_guis/f5-1002439.html

--
Steve Lord
slord@mathworks.com

Tags for this Thread

Add a New Tag:

Separated by commas
Ex.: root locus, bode

What are tags?

A tag is like a keyword or category label associated with each thread. Tags make it easier for you to find threads of interest.

Anyone can tag a thread. Tags are public and visible to everyone.

rssFeed for this Thread
 

MATLAB Central Terms of Use

NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Terms prior to use.

Contact us at files@mathworks.com