The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: juzi on January 05, 2012, 12:11:13 PM

Title: Question on EditText
Post by: juzi on January 05, 2012, 12:11:13 PM
hi guys,there is a problem i don't know how to solve.

I am using radasm3 and ML10, use the template "DialogAsMain" , and then add an EditText

the problem is the EditText only accept few chars , the length is limited by the Width of the EditText.

I tried to use EM_LIMITTEXT , but don't work

Title: Re: Question on EditText
Post by: jj2007 on January 05, 2012, 12:14:39 PM
You need either ES_AUTOHSCROLL or ES_MULTILINE.
Title: Re: Question on EditText
Post by: juzi on January 05, 2012, 12:18:10 PM
Quote from: jj2007 on January 05, 2012, 12:14:39 PM
You need either ES_AUTOHSCROLL or ES_MULTILINE.

thanks :U