Changeset 1395 for trunk/dll/tools.c


Ignore:
Timestamp:
Feb 8, 2009, 2:48:16 AM (17 years ago)
Author:
Gregg Young
Message:

Allow user to turn off alert and/or error beeps in settings notebook. Ticket 341 Move repeated strings to PCSZs. Ticket 6 Add *DateFormat functions to format dates based on locale Ticket 28 Eliminate Win_Error2 by moving function names to PCSZs used in Win_Error Ticket 6

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/tools.c

    r1348 r1395  
    2222  26 Aug 08 GKY Require unique ID plus text and help strings for all tools save toolbar on button delete
    2323  01 Sep 08 GKY Save toolbars immediately on change.
     24  07 Feb 09 GKY Allow user to turn off alert and/or error beeps in settings notebook.
    2425
    2526***********************************************************************/
     
    784785        WinQueryDlgItemText(hwnd, ADDBTN_ID, 6, idstr);
    785786        if (!(USHORT) atoi(idstr)) {
    786           DosBeep(250, 100);
     787          if (!fAlertBeepOff)
     788            DosBeep(250, 100);
    787789          break;
    788790        }
     
    832834        WinQueryDlgItemText(hwnd, ADDBTN_ID, 6, idstr);
    833835        if (!(USHORT) atoi(idstr)) {
    834           DosBeep(250, 100);
     836          if (!fAlertBeepOff)
     837            DosBeep(250, 100);
    835838          break;
    836839        }
Note: See TracChangeset for help on using the changeset viewer.