```vb
Public Class Form1
Private Sub TextBox1_TextChanged(sender As Object, e As EventArgs) Handles TextBox1.TextChanged
TextBox1.Text = TextBox1.Text.ToLower()
End Sub
End Class
```
```html
在VB中,你可以通过以下代码将输入的大写字母转换为小写字母。
创建一个TextBox控件用于输入,然后使用TextChanged事件处理程序来实现文本转换功能。