Home | History | Annotate | Download | only in ControlPanel

Lines Matching refs:box

124 	// Now populate the registration domain box
172 CSecondPage::Commit( CComboBox & box, HKEY key, DWORD enabled )
202 box.GetWindowText( selected );
204 // If we haven't seen this string before, add the string to the box and
207 if ( ( selected.GetLength() > 0 ) && ( box.FindStringExact( -1, selected ) == CB_ERR ) )
211 box.AddString( selected );
368 CSecondPage::EmptyComboBox( CComboBox & box )
370 while ( box.GetCount() > 0 )
372 box.DeleteString( 0 );
382 CSecondPage::Populate( CComboBox & box, HKEY key, StringList & l )
406 box.AddString( tok );
425 if ( box.FindStringExact( -1, *it ) == CB_ERR )
427 box.AddString( *it );
450 if ( box.SelectString( -1, subKeyName ) == CB_ERR )
454 box.AddString( subKeyName );
457 box.SelectString( -1, subKeyName );