Hello.
If I build myApp under Visual C++ 2005/2008 Express Edition, I have problem with wxTextCtrl.
I added wxTE_PASSWORD style to my wxTextCtrl.
Durring writting in wxTextCtrl instead of stars I have empty space.
But If I compile the same code under Visual 2003 everything is ok.
Code:
long lStyle = wxTE_PASSWORD | wxTE_PROCESS_ENTER;
wxTextCtrl* pPassword = new wxTextCtrl(this, wxID_PASSWD_CTRL, wxT(""), wxDefaultPosition, wxDefaultSize, lStyle);
wxID_PASSWD_CTRL > wxID_HIGHEST.
Thanks
Visual 2005/2008 - problem with wxTextCtrl Topic is solved
Please post in the proper forum the next time. Thanks.
- Jorgen
- Jorgen
Forensic Software Engineer
Netherlands Forensic Insitute
http://english.forensischinstituut.nl/
-------------------------------------
Jorg's WasteBucket
http://www.xs4all.nl/~jorgb/wb
Netherlands Forensic Insitute
http://english.forensischinstituut.nl/
-------------------------------------
Jorg's WasteBucket
http://www.xs4all.nl/~jorgb/wb
I am sorry.
My mistake.
I repaired it.
If I don`t call method SetFont on the wxTextCtrl with style
wxTE_PASSWORD everything is OK.(2008 Express)
If I call SetFont and compile program under Visual 2003 everything is ok.
I use not standard system font("MyriadPro-Regular").Of course I installed this font before.
Thanks!

My mistake.
I repaired it.
If I don`t call method SetFont on the wxTextCtrl with style
wxTE_PASSWORD everything is OK.(2008 Express)
If I call SetFont and compile program under Visual 2003 everything is ok.
I use not standard system font("MyriadPro-Regular").Of course I installed this font before.
Thanks!