Path: news.mathworks.com!not-for-mail
From: <HIDDEN>
Newsgroups: comp.soft-sys.matlab
Subject: Re: Set checkbox checked when the step is done.
Date: Tue, 30 Sep 2008 09:37:01 +0000 (UTC)
Organization: Univ of Cambridge
Lines: 13
Message-ID: <gbsrvt$adt$1@fred.mathworks.com>
References: <gbsr1u$3ek$1@fred.mathworks.com>
Reply-To: <HIDDEN>
NNTP-Posting-Host: webapp-03-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1222767421 10685 172.30.248.38 (30 Sep 2008 09:37:01 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Tue, 30 Sep 2008 09:37:01 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 503430
Xref: news.mathworks.com comp.soft-sys.matlab:492894


Hi Karen.

set(handles.checkbox1,'Value',1);

...places a tick in the box. To find out more things like this, right click on the object in GUIDE than look at the property inspector. The best way of learning is to look down the list of properties, find likely looking ones, and mess about with them! There are always the help pages to describe what particular properties do...

Kind Regards

Tom Clark


"karen liew" <liewsheaushiang@yahoo.com> wrote in message <gbsr1u$3ek$1@fred.mathworks.com>...
> I am doing a GUI project requires user input step by step. I would like to remind the user which data is done. I am thinking to check the checkbox automatically according to the step. May I know is that possible doing so using MATLAB? If yes, how to do it? Thanks!