Re: DlangUI EditLine question

2015-03-16 Thread Kyle via Digitalmars-d-learn
Thanks! I'll try this out after I get home.

Re: DlangUI EditLine question

2015-03-16 Thread Vadim Lopatin via Digitalmars-d-learn
On Sunday, 15 March 2015 at 16:21:21 UTC, Kyle wrote: I have a variable, x, which I want to update when the content of a DlangUI EditLine is modified. I tried making this work with the "onContentChange" method listed in the API documentation, but dmd told me it's not there. I've got this worki

DlangUI EditLine question

2015-03-15 Thread Kyle via Digitalmars-d-learn
I have a variable, x, which I want to update when the content of a DlangUI EditLine is modified. I tried making this work with the "onContentChange" method listed in the API documentation, but dmd told me it's not there. I've got this working now by implementing a custom subclass of EditLine as