1樓:魚木混豬喲
vb中textbox不能改背景色為透明
可以換個思路,用label代替textbox,就可以設定為透明瞭
將label的backstyle屬性設定為0-transparent
2樓:匿名使用者
text1.backcolor = &h8000000f
實際上,就是把textbox的背景色設成和form一樣的顏色
label的backstyle屬性可以設定成透明,textbox沒有這個屬性啊
3樓:匿名使用者
1、把textbox的backcolor 設定成和背景一樣顏色
2、引入excel2.0包,裡面有透明元件
4樓:掣電小子
textbox難以實現這個功能,用richtextbox可以輕易實現
在窗體上放一個image1和richtextbox1
'p.s. richtextbox 位置:microsoft rich text box control 6.0
option explicit
private const gwl_exstyle = (-20)
private declare function setwindowlong lib "user32" alias "setwindowlonga" (byval hwnd as long, byval nindex as long, byval dwnewlong as long) as long
private declare function getwindowlong lib "user32" alias "getwindowlonga" (byval hwnd as long, byval nindex as long) as long
private sub form_load()
image1.top = richtextbox1.top
image1.left = richtextbox1.left
image1.width = richtextbox1.width
image1.height = richtextbox1.height
setwindowlong richtextbox1.hwnd, gwl_exstyle, getwindowlong(richtextbox1.hwnd, gwl_exstyle) or ws_ex_transparent
end sub
5樓:邂逅的守望
lblresult.backcolor = color.transparent
textbox沒有透明這個屬性
6樓:巴哥泡泡
沒有透明的屬性,不過label可以通過置前來達到你所需要的讓label設定在flash控制元件的外面的效果
vb中backstyle與backcolor與forecolor都代表什麼?謝謝~
7樓:匿名使用者
backcolor:組建的背景顏色
forecolor:此組建的前景色,用於顯示文字不記得vb.net中哪個控制元件有這個屬性,backstyle。
有些語言中 backstyle = 0 是透明的當編輯框不處於焦點。
vb如何將textbox中內容賦值給陣列
text1.text 12,34,56 temp split text1.text,for i 0 to ubound temp debug.print temp i next 用join split函式!join語法 join list delimiter join函式語法有如下幾部分 描述 li...
vb中的UBound的問題,VB中ubound()是什麼意思啊?
先說多維陣列 在一維陣列中,我們例如說從桌子左邊到右邊,每1cm為一個單位,可以有陣列 長度 i 這個i從0到120 在二維陣列中,我除了左右,我們有按照前後,每1cm為一個單位就有了陣列 桌面 i,j 這個1從0到120,j從0到60 在三維陣列中,我們除了前後左右,再加上上下,從下到上也每1cm...
vb中的function是什麼,VB中的function是什麼
function 是函式標誌,函式中有自變數,而過程裡沒有自變數。初中學函式都知道,函式是一個值隨著另一個值的變化而變化的標誌。當你只是重複執行一段程式,不考慮某個變數的時候,應選用過程。當你要執行一段程式隨著某個值的變化而變化的時候,應選用函式。 不對function是指方法 即函式 functi...