Hello Martin.

About the behaviour of caption-frame of tfilenameedit when disable-enable
it.

For example in MSEide, in projectoptions form, if you enable/disable 
"Message Output File" via the checkbox "Copy messages to file",
the frame caption of "Message Output File" stays always grayed ?

<http://mseide-msegui-talk.13964.n8.nabble.com/file/t2/framecaption.png> 

Is it wanted ?

As workaround, I use this:

procedure tprojectoptionsfo.copymessagechanged(const sender: TObject);
begin
 messageoutputfile.enabled:= copymessages.value;
 
 if copymessages.value then
  messageoutputfile.frame.captiontextflags := [tf_bottom]
 else 
  messageoutputfile.frame.captiontextflags := [tf_bottom,tf_grayed];

end;

Other thing.

Still in projectoptions form, stripmessageesc.onchange is assigned to
copymessagechanged.
IMHO it should not assigned with this (maybe because of a old copy-paste?).

Ffre;D



--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


_______________________________________________
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to