Hello.
I was wondering where i can get limits to stuff outputed into the folllowing controls:
edit box
rich edit box
memo box
listview
and also if there is any character set limitation ..like only alphanum characters output...
Thx
Printable View
Hello.
I was wondering where i can get limits to stuff outputed into the folllowing controls:
edit box
rich edit box
memo box
listview
and also if there is any character set limitation ..like only alphanum characters output...
Thx
Listview does not have any limitiations regarding to how many items it can store or the length of the text per item. But the edit control understads ES_UPPERCASE for uppercase characters only, ES_LOWERCASE for lowercase characters only and ES_NUMBER for number's only. ES_UPPERCASE and ES_LOWERCASE converts the input if possible and ES_NUMBER only allowes digits to be entered.
And by the way: What is a memo control? :confused:
Oh I forgot EM_LIMITTEXT can be used to limit the text that can be entered into an edit control. This attribute can be read by using EM_GETLIMITTEXT.
Best Regards
Memo control...it is from Borland environemnt...itis clasified as win32api control...what is it..it is type of richedit control...
what about rich edito control, does it have any limitations?