[DUG] Enable CheckBox
David O'Brien
Dave at iccs.co.nz
Tue Apr 27 11:54:14 NZST 2010
Mainly because it makes me think about the real meaning when looking at
the code again J.
From: delphi-bounces at delphi.org.nz [mailto:delphi-bounces at delphi.org.nz]
On Behalf Of Colin Johnsun
Sent: Tuesday, 27 April 2010 11:47 a.m.
To: NZ Borland Developers Group - Delphi List
Subject: Re: [DUG] Enable CheckBox
I like David's version but why not get rid of the "not" to:
DBCheckBox4.Enabled := DBEdit2.Text <> '';
Cheers,
On 27 April 2010 09:40, Ian Drower <idrower at gmail.com> wrote:
Hi Bob
I'd use
if DBEdit2.Text <> '' then
DBCheckBox4.Enabled := true
else
DBCheckBox4.Enabled := false
Ian
On 27/04/2010 10:52 a.m., David O'Brien wrote:
Why the four quotes in the false and a space in the true?
I would use something like:
DBCheckBox4.Enabled := not (DBEdit2.Text = '') ;
From: delphi-bounces at delphi.org.nz
[mailto:delphi-bounces at delphi.org.nz] On Behalf Of Bob Pawley
Sent: Tuesday, 27 April 2010 10:39 a.m.
To: NZ Borland Developers Group - Delphi List
Subject: [DUG] Enable CheckBox
Hi
I am attempting to enable a checkbox only when a DBEdit has a
value. (Disabled when no string in DBEdit.)
Following is my code which disables the CheckBox after a delete
from the DBEdit.
But it is not enabled when I add a string to the DBEdit.
------
procedure TForm4.DBEdit2Change(Sender: TObject);
begin
if
DBEdit2.Text = ' '
then
DBCheckBox4.Enabled := True
Else if DBEdit2.Text = ''''
then
DBCheckBox4.Enabled := False ;
end;
Thanks for any help.
Bob
_______________________________________________
NZ Borland Developers Group - Delphi mailing list
Post: delphi at delphi.org.nz
Admin: http://delphi.org.nz/mailman/listinfo/delphi
Unsubscribe: send an email to delphi-request at delphi.org.nz with
Subject: unsubscribe
_______________________________________________
NZ Borland Developers Group - Delphi mailing list
Post: delphi at delphi.org.nz
Admin: http://delphi.org.nz/mailman/listinfo/delphi
Unsubscribe: send an email to delphi-request at delphi.org.nz with Subject:
unsubscribe
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listserver.123.net.nz/pipermail/delphi/attachments/20100427/afaf2216/attachment.html
More information about the Delphi
mailing list