vb题 只能向窗体中的文本框输入字母和数字字符,并且从键盘上输入的字母如果是小写,则需要转换为大写字母在文本框中显示   
  急急急
  求 vb 高手 谢谢了 写好 请发到邮箱 [email protected]

解决方案 »

  1.   

    Private Sub Text1_Change()
        Text1 = Format(Text1, ">")
        Text1 = StrConv(Text1, vbUpperCase)
    End Sub
      

  2.   

    急急急
      求 money 高手 谢谢了 注意 请发到银行账户 ****************
      

  3.   

    你好!我还有一vb题不会 能帮我在写一个吗?谢谢您了
      题目:
      编写一个函数reversedigit(byval num as integer)。该函数将整数nun的每个位上的数字逆序排列后返回。 
      谢谢您了 我下午就要交了
      

  4.   

    num = strreverse(num)
    你不会看MSDN?
      

  5.   

    public function reversedigit(byval num as integer)as integer
    reversedigit = strreverse(num)
    end function
      

  6.   

    要注意的是12345翻了54321, insteger不够大。
      

  7.   

    呵呵,你不会调试。
    再加个按钮
    Option ExplicitPrivate Sub Command1_Click()
        Dim a As Integer    a = intReserse(123)
        MsgBox a
    End SubPublic Function intReserse(num As Integer) As Integer
        intReserse = StrReverse(num)
    End Function
      

  8.   

    以前不知道是作业,我帮你是害你。
    自己学会找到解决问题的方法,搜索下csdn或百度
    1,合并 两个数组
    2,排序数组