From: Brian S. <xue...@us...> - 2008-02-13 22:10:33
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8067 Modified Files: Tag: b0_22_2 dbicapture.nsi Log Message: When displaying the "Trace Level" selection page highlight the default radiobutton (Trace Level 1) instead of the first one in the list (Trace Level 0). Index: dbicapture.nsi =================================================================== RCS file: /cvsroot/popfile/windows/Attic/dbicapture.nsi,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -C2 -d -r1.1.2.3 -r1.1.2.4 *** dbicapture.nsi 13 Feb 2008 21:08:21 -0000 1.1.2.3 --- dbicapture.nsi 13 Feb 2008 22:10:37 -0000 1.1.2.4 *************** *** 86,90 **** ;-------------------------------------------------------------------------- ! !define C_VERSION "0.0.3" !define C_OUTFILE "dbicapture.exe" --- 86,90 ---- ;-------------------------------------------------------------------------- ! !define C_VERSION "0.0.4" !define C_OUTFILE "dbicapture.exe" *************** *** 404,408 **** !insertmacro MUI_HEADER_TEXT "$(PFI_LANG_DBICAP_SELECT_HDR)" "$(PFI_LANG_DBICAP_SELECT_SUBHDR)" ! !insertmacro MUI_INSTALLOPTIONS_DISPLAY "ioDTL.ini" !insertmacro MUI_INSTALLOPTIONS_READ ${L_BUTTON} "ioDTL.ini" "Field 2" "State" --- 404,413 ---- !insertmacro MUI_HEADER_TEXT "$(PFI_LANG_DBICAP_SELECT_HDR)" "$(PFI_LANG_DBICAP_SELECT_SUBHDR)" ! !insertmacro MUI_INSTALLOPTIONS_INITDIALOG "ioDTL.ini" ! Pop ${L_BUTTON} ! FindWindow ${L_BUTTON} "#32770" "" $HWNDPARENT ! GetDlgItem ${L_BUTTON} ${L_BUTTON} 1202 ; [Field 3] is the default setting (Trace level 1) ! SendMessage $HWNDPARENT ${WM_NEXTDLGCTL} ${L_BUTTON} 1 ; Set focus to the default radiobutton ! !insertmacro MUI_INSTALLOPTIONS_SHOW !insertmacro MUI_INSTALLOPTIONS_READ ${L_BUTTON} "ioDTL.ini" "Field 2" "State" |