有:
str(0)="a"
str(1)="B"
str(2)="c"
str(3)="D"逐一输入到一个文本框后为:aBcD不知道如何控制大小写,试了几次shift,不会用,没成功

解决方案 »

  1.   

    在处理event时加入:
    '全部小写:
    if keycode>=97 and keycode<=122 then keycode=keycode-32
    '全部大写:
    if keycode>=65 and keycode<=90 then keycode=keycode+32
      

  2.   

    http://download.csdn.net/source/1273325
    http://topic.csdn.net/t/20061224/14/5252514.html
      

  3.   

    if keycode>=65 and keycode <=90 then keycode=keycode+32 ???回 1.2.4楼:键码常数没有小写字母!所以才麻烦的
      

  4.   

    输入大写:
    1、模拟Shift按下
    2、模拟字符键按下
    3、等待100毫秒
    4、模拟字符键弹起
    5、模拟Shift键弹起
      

  5.   

    楼上说的能有空给个代码不 我试了不行(Shift和Capital都试了)