可以用sendkeys chr(-12598) & chr(-23622 ),就是“问:”,至于答你用asc函数查一下作者: wuaza 时间: 2014-4-23 18:13
非常感谢玉树TMD临风大侠,解决了我的大问题。作者: wuaza 时间: 2014-4-24 13:18
这是最后成形的代码,很管用。(blp是窗体公共变量)
Private Sub txt询问内容_KeyUp(KeyCode As Integer, Shift As Integer)
On Error Resume Next
If KeyCode = 13 Then
'可用asc函数查找任意字符的代码。
If blp = False Then
SendKeys Chr(-12598) & Chr(-23622)
Else
SendKeys Chr(-19216) & Chr(-23622)
End If
blp = Not blp
End If
End Sub