msi: Highlight the text in the PathEdit control.

This commit is contained in:
James Hawkins 2006-08-28 17:53:20 -07:00 committed by Alexandre Julliard
parent 337e1e202f
commit 7df642117c
1 changed files with 3 additions and 0 deletions

View File

@ -1434,6 +1434,9 @@ static UINT msi_dialog_pathedit_control( msi_dialog *dialog, MSIRECORD *rec )
val = msi_dup_property( dialog->package, prop );
SetWindowTextW( control->hwnd, val );
SendMessageW( control->hwnd, EM_SETSEL, 0, -1 );
msi_free( val );
msi_free( indirect );