Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1.0 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Forms
  4. // Copyright (C) Microsoft Corporation, 1992 - 1995.
  5. //
  6. // File: taborder.dlg
  7. //
  8. // Contents: Resource for the tab order dialog.
  9. //
  10. // History: 12-Jul-95 t-AnandR Created
  11. //
  12. //----------------------------------------------------------------------------
  13. IDR_TABORDERDLG DIALOG DISCARDABLE 0, 0, 217, 125
  14. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  15. CAPTION "Tab Order"
  16. #ifndef _MAC
  17. FONT 8, "MS Shell Dlg"
  18. #else
  19. FONT 9, "geneva"
  20. #endif
  21. BEGIN
  22. DEFPUSHBUTTON "OK",IDOK,160,18,50,14
  23. PUSHBUTTON "Cancel",IDCANCEL,160,36,50,14
  24. PUSHBUTTON "Move &Up",IDR_BTNMOVEUP,160,66,50,14
  25. PUSHBUTTON "Move &Down",IDR_BTNMOVEDOWN,160,84,50,14
  26. LTEXT "&Tab Order:",IDR_TABORDERLBL,7,7,142,10
  27. LISTBOX IDR_TABORDERLSTBOX,7,18,142,101,LBS_MULTIPLESEL |
  28. LBS_EXTENDEDSEL | WS_VSCROLL | WS_TABSTOP
  29. END