vb自動將text中內容移動到某個方框內

2022-09-21 20:16:43 字數 653 閱讀 4261

1樓:

你說的方框可以是label(標籤框)

對text1的lostfocus事件寫**label1.caption=text1.textend sub 就完了

2樓:匿名使用者

'在屬性欄設定text2.multiline = true'新增textbox2個 預設控制元件名

private sub text1_keypress(keyascii as integer)

if keyascii = 13 thentext2.text = text2.text & text1.text & vbcrlf

text1.text = ""

end if

end sub

private sub text1_lostfocus()text2.text = text2.text & text1.text & vbcrlf

text1.text = ""

end sub

3樓:布蘭的詩歌

方框可用**框代替

在text1的失去焦點事件中,用pictureprint方法使text的內容在**框中列印出來

text1清空

完成可惜我沒有裝vb程式,不然給你編寫出來。

vb怎樣禁止text1中輸入特殊字元

private sub text1 change dim s as string,ss as long,l as long s 需要禁止的字元都放這裡吧ss text1.selstart for i 1 to len s l len text1.text text1.text replace tex...

vb中怎麼將字元轉換成時間,VB中怎麼將字元轉換成時間

vb使用 cdate 函式將字串轉換成 date。cdate 函式示例 本示例使用 cdate 函式將字串轉換成 date。一般說來,字串格式的日期與時間硬編碼 如示例中所示 並不好。較好的做法是使用日期原義表示式和時間的原義表示式 如 2 12 1969 4 45 23 pm dim mydate...

VB中怎麼樣讓單擊按鈕控制元件,讓text2中顯示text1中輸入的碟符下的所有檔案

dim spath as string dim sa as string dim sfile as string spath text1 sa dir spath,vbnormal do while sa sfile sfile sasa dir loop text2 sfile 這個妥,如果是vb...