Path: news.mathworks.com!not-for-mail
From: "Travis " <sinusoid2@hotmail.com>
Newsgroups: comp.soft-sys.matlab
Subject: Re: Putting a progress bar on a GUI - sorry, you're out of luck
Date: Tue, 26 May 2009 23:32:03 +0000 (UTC)
Organization: The MathWorks, Inc.
Lines: 10
Message-ID: <gvhu5i$ash$1@fred.mathworks.com>
References: <a6b98772-2bb0-4a16-932a-918c1d1cf1c8@k19g2000yqg.googlegroups.com> <gsaou5$l8l$1@fred.mathworks.com>
Reply-To: "Travis " <sinusoid2@hotmail.com>
NNTP-Posting-Host: webapp-02-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1243380723 11153 172.30.248.37 (26 May 2009 23:32:03 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Tue, 26 May 2009 23:32:03 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 1257700
Xref: news.mathworks.com comp.soft-sys.matlab:542744


"Glenn " <JAGGKG@hotmail.com> wrote in message <gsaou5$l8l$1@fred.mathworks.com>...
> FYI, a progress bar can be implemented.
> Use a Slider Control with the Enable property set to Inactive. This prevents the slider from being moved by the user.
> Change the Value property of the control from inside your coding to indicate progress.
> The slider changes position according to the Value property.
> The Value property must be between the Min and Max properties of the Slider Control but these can also be changed if necessary.
> For progress labels (such as % complete) use a Static Text button just above the slider with text spaced appropriately so as to span the range of movement of the slider.
> 

OK, I have a "Process" button on my GUI that runs code.  How do i modify something on the GUI from within the other code?  I know exactly how I would like to set it, I just don't know how.