投稿者 名鉄2000系  () 投稿日時 2008/8/14 09:15:00
VBのバージョンが書いてないので、とりあえずVB2002以降のものを。 
 
'フォーム上のTextBoxの値をすべて足して、MsgBoxで表示します。。 
Dim o As Control 
Dim Value As Integer 
For Each o In Me.Controls 
    If o.GetType Is GetType(TextBox) Then 
       Value += o.Text 
    End If 
Next 
MsgBox(Value) 
 
コレでいいでしょうか?