⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ase.dcl

📁 Autocad-2005-简体中文-解密版.zip
💻 DCL
📖 第 1 页 / 共 5 页
字号:
// Next available MSG number is   207 
// MODULE_ID ASE_DCL_
// 
//----------------------------------------------------------------------------
//
//     ASE.DCL          AutoCAD SQL Environment dialog file
//
//     Copyright (C) 1991-1997 by Autodesk, Inc.
//
//     Permission to use, copy, modify, and distribute this software
//     for any purpose and without fee is hereby granted, provided
//     that the above copyright notice appears in all copies and
//     that both that copyright notice and the limited warranty and
//     restricted rights notice below appear in all supporting
//     documentation.
//
//     AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
//     AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
//     MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE.  AUTODESK, INC.
//     DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
//     UNINTERRUPTED OR ERROR FREE.
//
//     Use, duplication, or disclosure by the U.S. Government is subject to
//     restrictions set forth in FAR 52.227-19 (Commercial Computer
//     Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)
//     (Rights in Technical Data and Computer Software), as applicable.
//
//----------------------------------------------------------------------------
dcl_settings : default_dcl_settings { audit_level = 0; }

ase_ok_button : ok_button {
    key                 = "ID_BUTT_OK";
    is_default          = false ;
}

ase_cancel_button : cancel_button {
    key                 = "ID_BUTT_CANCEL";
    is_cancel           = true ;
}

ase_help_button : help_button {
    key                 = "ID_BUTT_HELP";
}

ase_errtile : errtile {
    key                 = "ID_TEXT_ERRMSG";
}

ase_close_button : ok_button {
    label               = "&Close";
    key                 = "ID_BUTT_CLOSE";
    is_default          = false ;
    is_cancel           = true ;
}

ase_execute_button : retirement_button {
    label          = "&Execute";
    key            = "ID_BUTT_EXEC";
}

ase_graph_button : retirement_button {
    label          = "&Graphical <";
    key            = "ID_BUTT_GRAPH";
    width          = 10 ;
}

ase_upd_button : retirement_button {
    key            = "ID_BUTT_UPD";
    label          = "&Update";
    width          = 10 ;
}

ase_delete_button : retirement_button {
    key         = "ID_BUTT_DEL";
    label       = "&Delete";
    width       = 10 ;
}

ase_keys_button : retirement_button {
    label       = "&Keys...";
    key         = "ID_BUTT_KEYS";
    width       = 10 ;
}

ase_next_button : retirement_button {
    label       = "&Next";
    key         = "ID_BUTT_NEXT";
    width       = 8 ;
}

ase_prior_button : retirement_button {
    label       = "&Prior";
    key         = "ID_BUTT_PRIOR";
    width       = 8 ;
}

ase_first_button : retirement_button {
    label       = "&First";
    key         = "ID_BUTT_FIRST";
    width       = 8 ;
}

ase_last_button : retirement_button {
    label       = "&Last";
    key         = "ID_BUTT_LAST";
    width       = 8 ;
}

ase_select_button : retirement_button {
    label          = "&Select";
    key            = "ID_BUTT_SELECT";
    width          = 10 ;
}

ase_edit_button : retirement_button {
    label       = "&Edit...";
    key         = "ID_BUTT_EDIT";
    width       = 10 ;
}

ase_hlight_button : retirement_button {
   label        = "H&ighlight <";
   key          = "ID_BUTT_HLIGHT";
   width        = 10 ;
}


ase_ok_cancel : column {
    : row {
        fixed_width = true;
        alignment = centered;
        ase_ok_button;
        : spacer { width = 2; }
        ase_cancel_button;
    }
}

ase_ok_cancel_help : column {
    : row {
        fixed_width = true;
        alignment = centered;
        ase_ok_button;
        : spacer { width = 2; }
        ase_cancel_button;
        : spacer { width = 2; }
        ase_help_button;
    }
}

curr_path_string : row {
   : text {
        key     = "ID_TEXT_CURRSET";
   }
}

ase_sql_state : column {
   : row {
       : text {
           label      = "SQL STATE: " ;
           width      = 10 ;
           fixed_width= true ;
           alignment  = left ;
       }
       : text {
           alignment  = left ;
           width      = 25 ;
           key        = "ID_TEXT_SQLS" ;
       }
   }
}

//------------------------------------------------------
//
//  Macro for ASE current settings tile
//
current_settings : column {
    : boxed_row {
        label = "Database Object Settings";
        curr_path_string ;
    }
}

lpn_plist : row {
    : column {
          : text {
             label      = "Link Path Name";
             width      = 14 ;
          }
          : popup_list {
             width      = 14 ;
             key        = "ID_PLIST_LPN" ;
          }
    }
}

//------------------------------------------------------
//
//  Macro for Environment, Catalog, Schema poup-lists row
//
env_cat_sch : column {
    : row {
        : column {
              alignment         = left ;
              : text {
                label           = "Environment";
                 width          = 14 ;
              }
              : popup_list {
                width           = 14 ;
                key             = "ID_PLIST_ENV";
              }
        }
        : column {
              : text {
                 label          = "Catalog   ";
                 width          = 14 ;
              }
              : popup_list {
                 width          = 14 ;
                 key            = "ID_PLIST_CAT";
              }
        }
        : column {
              : text {
                 label          = "Schema    ";
                 width          = 14 ;
              }
              : popup_list {
                 width          = 14 ;
                 key            = "ID_PLIST_SCH";
              }
        }
    }
}

//------------------------------------------------------
//
//  Macro for Environment, Catalog, Schema, Table poup-lists row
//
env_cat_sch_tab : column {
    : row {
        env_cat_sch;
        : column {
              : text {
                 label  = "Table";
                 width  = 14 ;
              }
              : popup_list {
                 width  = 14 ;
                 key    = "ID_PLIST_TBL";
              }
        }
    }
}

//------------------------------------------------------
//
//  Macro for Environment, Catalog, Schema, Table, Link Path Name
//  poup-lists row.
//
env_cat_sch_tab_lpn : column {
    : row {
        env_cat_sch_tab ;
        lpn_plist ;
    }
}
iso_level_list : row {
    : column {
          : text {
             label      = "Isolation &Level";
             width      = 14 ;
          }
          : popup_list {
             width      = 14 ;
             key        = "ID_PLIST_ISO" ;
          }
    }
}

//---------------------------------------------------------------------------
// Macro for the SQL statement
//
ase_sql_statement : row {
    : column {
        : text {
            label  = "SELECT Statement:";
        }
        : text {
            key    = "ID_TEXT_SQLS";
            alignment = left ;
        }
        : slider {
            key    = "ID_SLDR_ERRMSG";
            layout = horizontal ;
            min_value  = 0;
            max_value  = 255;
        }
    }
}

//------------------------------------------------------------------------------------
// ASEADMIN dialog box
//
aseadmin : dialog {
    aspect_ratio = 0;
    label = "Administration";
    : row {
        : column {
            : column {
                : boxed_row {
                    label       = "Database Object Settings";
                    curr_path_string ;
                }
            }
            : boxed_radio_row {
                label   = "Database Object Selection" ;
                : radio_button {
                    label       = "En&vironment";
                    key         = "ID_RBUT_ENV";
                }
                : radio_button {
                    label       = "Catal&og";
                    key         = "ID_RBUT_CAT";
                }
                : radio_button {
                    label       = "Sche&ma";
                    key         = "ID_RBUT_SCH";
                }
                : radio_button {
                    label       = "&Table";
                    key         = "ID_RBUT_TBL";
                }
            }
            : concatenation {
                children_fixed_width = true ;
                : text {
                     label      = "Data&base Objects: " ;
                     width      = 30 ;
                }
                : text {
                     width      = 5 ;
                     label      = "Con";
                }
                : text {
                     width      = 5 ;
                     label      = "Avl";
                }
                : text {
                     width      = 5 ;
                     label      = "Reg";
                }
                : text {
                     width      = 2 ;
                }
            }
            : list_box {
                horizontal_alignment = centered ;
                vertical_alignment = centered ;
                key             = "ID_LBOX_DO";
                mnemonic        = "b" ;
                height          = 6 ;
                tabs            = "32 38 44 48" ;
                tab_truncate    = true ;
                fixed_width_font= true ;
            }
            : slider {
                key             = "ID_SLIDER";
                layout          = horizontal ;
                min_value       = 0;
                max_value       = 255;
            }
        }
        : column {
            : boxed_column {
                label               = "Set by" ;
                children_fixed_width= true ;
                children_alignment  = centered ;
                : ase_graph_button {
                   width = 14;
                }
                lpn_plist ;
            }
            : column {
                : button {
                      label         = "&Connect...";
                      key           = "ID_BUTT_CONNECT";
                      width         = 10 ;
                }
                : button {
                      label         = "&Disconnect";
                      key           = "ID_BUTT_DISCON";
                      width         = 10 ;
                }
                : button {
                      label         = "&About Env...";
                      key           = "ID_BUTT_ABOUT";
                }
                iso_level_list ;
            }
        }
    }
    : edit_box {
        label           = "&Path: ";
        key             = "ID_EBOX_DO";
    }
    : row {
        children_fixed_width = true ;
        : button {
            label         = "Lin&k Path Names...";
            key           = "ID_BUTT_KEYS";
            width         = 15 ;
        }
        : button {
            label         = "&Erase Links <";
            key           = "ID_BUTT_ERASE";
            width         = 15 ;
        }
        : button {
            label         = "&Reload DA <";

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -