Search found 2 matches

by Jere_Jones
Sat Apr 29, 2006 4:18 pm
Forum: Announcements and Discoveries
Topic: wxPropertyGrid
Replies: 14
Views: 5609

I should have tested that a little more before I posted it. Here is a working version:

Code: Select all

if ((curChild->GetClassName() == wxString("wxStringProperty")) && (curChild->m_flags & wxPG_PROP_PASSWORD))
	s = wxString(wxChar('*'), s.Length());
Jere
by Jere_Jones
Sat Apr 29, 2006 3:25 pm
Forum: Announcements and Discoveries
Topic: wxPropertyGrid
Replies: 14
Views: 5609

This control was exactly what I have been looking for. Outstanding work! I only have one issue: If a parent property has a password as a child, the password is shown in the parent property's text block. My correction for this was to insert the following code at line 1444 in propgrid.cpp: if (curChil...