vb中textbox的backcolor怎麼設為透明

時間 2021-10-14 21:22:44

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中的if語句,VB中的If語句

荀曾顏念雁 檢測事件是在文字框中的change事件中判斷,也就是說只要文字框有改變就檢測!如果把其中的 and改寫成 or就可以判斷其中一個文字是否為空!private subtext1 change 判斷文字框最快的速度還是判斷它的長度是否為0iflen text1.text 0 andlen t...

c中如何讓內容輸出到textbox中

胡佳 在.cs 檔案中可以這樣寫 txtname.text 你要想輸入的內容 例如這裡向如數abc txtname.text abc 猴看燈 前臺 後臺 text id.text asdasd 但是,如果你的textbox的textmode設定成password了,則只能向後臺提交值,後臺不能向前臺...

C中怎樣在視窗中textBox中輸入的內容顯示在另

方法有很多種。比如 1 通過窗體1屬性值,將textbox值傳出去,在窗體2中獲取這個屬性 2 註冊事件方式,監聽窗體1中是否輸入內容3 委託方式,直接將方法傳遞等等 c 中怎樣在一個視窗中textbox中輸入的內容顯示在另一個視窗中的textbox中 你先 textbox1所屬視窗中把它的text...