1樓:匿名使用者
dim r as integer
定義了兩次,你把錯誤資訊貼一下
vb菜鳥級問題:如何讀取textbox中使用者的輸入內容,將之賦給a呢?
2樓:匿名使用者
private sub command1_click()a = text1.text
text2.text = a
end sub
private sub command2_click()endend sub
private sub form_load()text1.text = "請輸入內容"
end sub
private sub text1_click()text1.text = ""
end sub
vb菜鳥級問題 高手指點一下...滿意追加分
3樓:_昕0昕
'我是用visual studio 2005的。
''*************************************
'(import...)
class form1()
dim textintb1 as string
dim textintb2 as string
dim textintb2 as string
private sub from1_load(byval...)handle form1.load
'初始設定
textintb1 = ...
textintb2 = ...
textintb3 = ...
end sub
private sub button1.click(byval...)handle button1.click
'你已經編了,就不再重複了。
'也可以另外編一個sub,以便隨時呼叫。
'如:'--------------------------------------
'pri... display()
' 'textbox1.text = textintb1
'textbox2.text = textintb2
'textbox3.text = textintb3
' 'end sub
'--------------------------------------
'然後直接在button1.click(...)中輸:
'display()
......
...end sub
private sub button2.click(byval...)handle button2.click
......
...end sub
private sub button3.click(byval...)handle button3.click
if textbox1.text = "" or textbox2.text = "" or textbox3.text = "" then
'如果有文字框為空
else
'替換textintb1 = textbox1.text
textintb2 = textbox2.text
textintb3 = textbox2.text
end sub
end class
4樓:匿名使用者
replace 和 split
菜鳥請哪位幫個忙 vb編個小軟體 實現對自己的一個access資料庫檔案 的 新增 刪除 修改資料的功能 求全過程
5樓:手機使用者
採納我的阿!可以選擇,2011/10/13 20:18:48
6樓:匿名使用者
對不起 我不會 幫不到你了 sorry
vb程式設計菜鳥級問題
vb如何批量修改檔名,VB如何批量修改檔名?
dim s as string d dir d doc do until d s split d,s ubound s 1 s ubound s 1 b name d d as d join s,d dir loop msgbox 批量修改檔名完畢!如何批量提取多個word的檔名?批量提取多個wor...
請幫忙寫VB程式,去掉檔案裡中括號間的內容
net確實不會 不好意思 給個vb6的吧 dim s as byte dim e as byte dim f as boolean open 原始檔地址 for binary as 1redim s lof 1 1 get 1,1,s close 1 redim e 0 for i 0 to ubo...
VB中如何將檔案中的多行內容按行顯示在文字框中 注意,是多行內容的檔案,不是要文字框顯示多行內容
你要列印到文字框中?不知道你說的 prnt x,y 是不是你定義的一個函式,vb裡應該沒有這個方法的,如果你要按自己的格式列印到文字框 text1中,可按下面 列印的方法做你的東西。private sub command1 click text1.text 我 把text1的屬性設定為多行 mult...