zoukankan      html  css  js  c++  java
  • 汉化DBNavigator

    procedure CHNDBNavigator(ADBNavigator:TDBNavigator);
    var
      i:Integer;
    begin
      with ADBNavigator do
         for   I   :=   0   to   ComponentCount   -   1   do
              if   Components[I]   is   TNavButton   then   begin
                  case   TNavButton(Components[I]).Index   of
                      nbFirst:   TNavButton(Components[I]).Caption   :=   '首笔';
                      nbPrior:   TNavButton(Components[I]).Caption   :=   '上笔';
                      nbNext:   TNavButton(Components[I]).Caption   :=   '下笔';
                      nbLast:   TNavButton(Components[I]).Caption   :=   '末笔';
                      nbInsert:   TNavButton(Components[I]).Caption   :=   '新增';
                      nbDelete:   TNavButton(Components[I]).Caption   :=   '删除';
                      nbEdit:   TNavButton(Components[I]).Caption   :=   '修改';
                      nbPost:   TNavButton(Components[I]).Caption   :=   '保存';
                      nbCancel:   TNavButton(Components[I]).Caption   :=   '取消';
                      nbRefresh:   TNavButton(Components[I]).Caption   :=   '刷新';
                  end;  
              end;
      ADBNavigator.Flat:=True;
      ADBNavigator.ShowHint:=false;
    end;  

     
  • 相关阅读:
    centOS 6 服务管理与服务脚本
    centOS 6启动流程
    shell脚本之流程控制
    centOS7网络配置(nmcli,bonding,网络组)
    模拟主机跨路由通信实验
    网络配置之基本网络配置(cenos6)
    网络基础之IP地址与子网划分
    网络基础之网络层
    我的BO之数据保护
    我的BO之强类型
  • 原文地址:https://www.cnblogs.com/hnxxcxg/p/2941054.html
Copyright © 2011-2022 走看看