OK i solved the problem.
in Win98 the list-control (the parent) lost the focus.
Therefore, the created child (the editor control) could not get focus even when calling SetFocus()
I have downloaded a list editor sample.
It works fine in winNT.
However, in Win98 when navigating through the list cells by the keyboard, the edited text is not selected, as it does in WinnT.
Could someone, please, try to download the sample and
run it in WinnT and Win98...
Did you define a local variable that might exceeds the stack size?
for example:
char szXX[10*1024]; // 10Mb memory storage.
This definition is exceeds the stack size.
1. Copy "#define ARY 100" to the h file.
2. Change the data members to:
char cFName [ARY];
char cLName [ARY];
3 Remove those statements from the constructor.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.