zoukankan      html  css  js  c++  java
  • SysSetupFormRun 用不同颜色区分不同公司账套

    public void run()
    {
        super();

        this.design().colorScheme(2);
        this.design().backgroundColor(winapi::RGB2int(255, 0, 255)); // CRP
    /*
        switch (curEXT())
            {
            case '011' :
                this.design().backgroundColor(winapi::RGB2int(240,240,240));
                break;
            case '020' :
                this.design().backgroundColor(winapi::RGB2int(0,128,0));
                break;
            case '031' :
                this.design().backgroundColor(winapi::RGB2int(0,64,255));
                break;
            case '015' :
                this.design().backgroundColor(winapi::RGB2int(64,64,255));
                break;
            case '016' :
                this.design().backgroundColor(winapi::RGB2int(64,0,255));
                break;
            case '017' :
                this.design().backgroundColor(winapi::RGB2int(0,64,64));
                break;
            case '040' :
                this.design().backgroundColor(winapi::RGB2int(0,0,128));
                break;
            case '307' :
                this.design().backgroundColor(winapi::RGB2int(0,128,255));
                break;
            case '308' :
                this.design().backgroundColor(winapi::RGB2int(255,128,255));
                break;
            default :
                this.design().backgroundColor(winapi::RGB2int(212,208,200));
                break;
            }
    */
    }

  • 相关阅读:
    Flume配置
    HDU5312 Sequence
    CF(D. Fibonacci Sums)dp计数
    【算法拾遗】二分查找递归非递归实现
    ubuntu下怎么给普通用户赋予sudo权限
    在Oracle 11.2.0.1.0下dbms_stats.gather_table_stats收集直方图不准
    ZOJ3622 Magic Number(水题)
    小试ImageMagik——开发篇
    一起talk C栗子吧(第二十七回:C语言实例--插入排序)
    依据输入的内容打印出菱形
  • 原文地址:https://www.cnblogs.com/perock/p/2296893.html
Copyright © 2011-2022 走看看