zl程序教程

您现在的位置是:首页 >  其他

当前栏目

VB编程:UCase转大写,LCase转小写-4_彭世瑜_新浪博客

博客编程 vb 新浪 大写 小写 彭世瑜
2023-09-14 09:07:15 时间
Private Sub Text1_Change()
Text2.Text = LCase(Text1.Text)    '转换成小写字母
Text3.Text = UCase(Text1.Text)   '转换成大写字母
End Sub

Private Sub Command1_Click()
End
End Sub

界面效果:
VB编程:UCase转大写,LCase转小写-4