欧美韩国日本桃色,一区二区三区国产私人毛片,精品极品精品,亚洲一区人妻,久久久久久久久亚洲免费,青娱乐91,亚洲情涩,久久久成人毛片,日本欧美不卡二区在线

首頁 新聞 工控搜 論壇 廠商論壇 產(chǎn)品 方案 廠商 人才 文摘 下載 展覽
首頁 | 培訓(xùn)研討 | 公司簡介 | 聯(lián)系方式 | 公司動態(tài) | 產(chǎn)品 | 應(yīng)用實(shí)例 | 下載 | 文摘 | 誠聘 |
自由報(bào)表功能展示之導(dǎo)航

紫金橋軟件技術(shù)有限公司
收藏本文     查看收藏

自由報(bào)表是紫金橋監(jiān)控組態(tài)軟件提供的功能強(qiáng)大、使用靈活的報(bào)表工具,具有自由合并、拆散單元格、設(shè)置位圖、各種鼠標(biāo)動作、關(guān)聯(lián)實(shí)時數(shù)據(jù)庫和關(guān)系數(shù)據(jù)庫等功能,可通過腳本動態(tài)設(shè)置各種屬性或統(tǒng)計(jì)相關(guān)數(shù)據(jù)。

自由報(bào)表的主要功能是實(shí)現(xiàn)各種生產(chǎn)報(bào)表和統(tǒng)計(jì)報(bào)表,根據(jù)報(bào)表的靈活屬性也可以實(shí)現(xiàn)其他的一些功能,比如說可以自由收縮的界面導(dǎo)航功能,運(yùn)行效果如下圖紅色區(qū)域所示。

自由收縮導(dǎo)航功能用自由報(bào)表是怎么具體實(shí)現(xiàn)呢?

首先,進(jìn)入開發(fā)界面新建一個自由報(bào)表,然后打開報(bào)表,根據(jù)畫面的多少設(shè)置報(bào)表的行,根據(jù)畫面的名字設(shè)置表格里邊的文字內(nèi)容,設(shè)置如下圖所示。

收縮功能是通過節(jié)點(diǎn)按鈕鼠標(biāo)按下里邊的腳本來進(jìn)行控制實(shí)現(xiàn)的。實(shí)現(xiàn)此功能的關(guān)鍵點(diǎn)是控制每行的高度,報(bào)表設(shè)置高度的函數(shù)是SetRowHeight。

SetRowHeight

說明:設(shè)置某一行的高度。

格式:SetRowHeight (nRow, nHeight)

返回值:整型,0表示失敗,1表示成功。

參數(shù):

   nRow,整型,指明的行序號。

    nHeight,需要設(shè)置的高度。范圍(6—500)像素。

此示例里邊主要有5個節(jié)點(diǎn)腳本,以“建筑設(shè)備管理系統(tǒng)”節(jié)點(diǎn)按鈕為例,如下圖所示。

每個節(jié)點(diǎn)按鈕建立一個窗口變量,通過窗口變量的1和0之間的變化觸發(fā)腳本。變量為1,顯示此節(jié)點(diǎn)按鈕下的根按鈕(即指定根按鈕的行高度為非零的定值),其他根按鈕隱藏;變量為0,隱藏此節(jié)點(diǎn)按鈕下的根為按鈕(即指定根按鈕的行高度為0)。腳本如下所示:

n1 =!n1;

if n1 == 0 then

#report.setrowheight(2,0);

#report.setrowheight(3,0);

#report.setrowheight(4,0);

#report.setrowheight(5,0);

#report.setrowheight(6,0);

#report.setrowheight(7,0);

#report.setrowheight(8,0);

#report.setrowheight(9,0);

#report.setrowheight(10,0);

#report.setrowheight(11,0);

#report.setrowheight(12,0);

else

n2=0;

n3=0;

n4=0;

n5=0;

#report.setrowheight(2,34);

#report.setrowheight(3,34);

#report.setrowheight(4,34);

#report.setrowheight(5,34);

#report.setrowheight(6,34);

#report.setrowheight(7,34);

#report.setrowheight(8,34);

#report.setrowheight(9,34);

#report.setrowheight(10,34);

#report.setrowheight(11,34);

#report.setrowheight(12,34);

#report.setrowheight(14,0);

#report.setrowheight(15,0);

#report.setrowheight(16,0);

#report.setrowheight(17,0);

#report.setrowheight(18,0);

#report.setrowheight(19,0);

#report.setrowheight(20,0);

#report.setrowheight(22,0);

#report.setrowheight(23,0);

#report.setrowheight(24,0);

#report.setrowheight(26,0);

#report.setrowheight(27,0);

#report.setrowheight(28,0);

#report.setrowheight(30,0);

#report.setrowheight(31,0);

#report.setrowheight(32,0);

#report.setrowheight(33,0);

#report.setrowheight(34,0);

#report.setrowheight(35,0);

#report.setrowheight(36,0);

endif

也可以通過在根按鈕表格里邊導(dǎo)入圖片美化整個導(dǎo)航界面,如下圖所示。

至此通過自由報(bào)表做的導(dǎo)航功能就實(shí)現(xiàn)了,界面簡潔,友好。

有任何關(guān)于組態(tài)軟件的技術(shù)問題或需要更多的技術(shù)資料,可以在微信(微信號:Realinfo)留下聯(lián)系方式或者到http://www.realinfo.cc/交流。


 

狀 態(tài): 離線

公司簡介
產(chǎn)品目錄

公司名稱: 紫金橋軟件技術(shù)有限公司
聯(lián) 系 人: 李磊
電  話: 0459-8151391-808
傳  真: 0459-8151391-804
地  址: 大慶市高新區(qū)服務(wù)外包產(chǎn)業(yè)園C-1座817室
郵  編: 163316
主  頁:
 
紫金橋軟件相關(guān)文摘:
跨平臺實(shí)時數(shù)據(jù)庫變量引用導(dǎo)航功能介紹
跨平臺實(shí)時數(shù)據(jù)庫 如何利用MODBUS仿真軟件測試MODBUS驅(qū)動
紫金橋跨平臺實(shí)時數(shù)據(jù)庫如何實(shí)現(xiàn)多屏顯示
紫金橋跨平臺軟實(shí)時數(shù)據(jù)庫Web服務(wù)器和數(shù)據(jù)服務(wù)器分離訪問的配置
紫金橋跨平臺軟件遠(yuǎn)程采集RealInfo6.5
使用虛擬機(jī)做的工程實(shí)現(xiàn)跨網(wǎng)Web訪問
紫金橋軟件Microsoft Office Access 2003的ODBC數(shù)據(jù)源配置
紫金橋軟件閘門整體自動化監(jiān)控系統(tǒng)
通過紫金橋軟件來提高畫面組態(tài)速度
組態(tài)軟件在配套設(shè)備中的應(yīng)用
紫金橋的關(guān)系庫同步工具簡介
紫金橋組態(tài)軟件與歐姆龍PLC以太網(wǎng)通信(FINS命令)——CPU型號-CJ2M-CPU33
更多紫金橋軟件文摘...
通過中華工控網(wǎng)在線留言紫金橋軟件技術(shù)有限公司:
用戶名: 密碼: 免費(fèi)注冊為中華工控網(wǎng)會員
請留下您的有效聯(lián)系方式,以方便我們及時與您聯(lián)絡(luò)
 
中華工控網(wǎng) GKong.com制作發(fā)布 廣告聯(lián)系
临洮县| 凉城县| 乌兰浩特市| 玉溪市| 望都县| 安徽省| 顺昌县| 鸡东县| 琼结县| 盐边县| 抚顺县| 阿克陶县| 兴城市| 苗栗县| 朝阳县| 团风县| 遵义市| 临潭县| 贡觉县| 页游| 家居| 鱼台县| 麟游县| 治多县| 定南县| 肥乡县| 南岸区| 兴城市| 柘荣县| 江达县| 托克逊县| 红河县| 林口县| 精河县| 毕节市| 光泽县| 兰溪市| 青岛市| 乌苏市| 临西县| 云和县|