??在使用NicelLabel條碼打印軟件時(shí),如果實(shí)現(xiàn)圖像的顯示和隱藏呢?
1、首先,設(shè)置一個(gè)變量,變量名為imager_ctl,通過它的值來決定圖像是顯示呢,還是隱藏呢。
2、新建一個(gè)Picture圖像,Value值中Content選擇為Visual Basic Script,然后編輯Script,表達(dá)式如下:
if imager_ctl = "0" then
Result = ""
else
Result = "D:Program FilesEuroPlusNiceLabel 5SamplesGraphicsbanana.wmf"
End if
3、當(dāng)imager_ctl值為0時(shí),banana.wmf不顯示,當(dāng)imager_ctl為其他值時(shí),banana.wmf正常顯示。
4、通過對(duì)圖像Result的控制,可以實(shí)現(xiàn)各種圖像的有條件調(diào)用,非常方便。