当前位置:编程学习 > VB >>

请问:在VB中如何直接调用输入法

请问:在vb窗体中有三个方框,text1、text2、text3,想达到以下效果:text1使用极品五笔输入法,text2使用智能ABC输入法,text3直接使用英文输入法,当光标跳转到相应的方框中的时候,该输入法直接调用并使用,如何实现,急!!!求代码!!! --------------------编程问答-------------------- 网上找的

Private Declare Function GetKeyboardLayoutList Lib "user32" _

    (ByVal nBuff As Long, lpList As Long) As Long

Private Declare Function ImmGetDescription Lib "imm32.dll" _

    Alias "ImmGetDescriptionA" (ByVal HKL As Long, _

    ByVal lpsz As String, ByVal uBufLen As Long) As Long

Private Declare Function ImmIsIME Lib "imm32.dll" (ByVal HKL As Long) As Long

Private Declare Function ActivateKeyboardLayout Lib "user32" _

    (ByVal HKL As Long, ByVal flags As Long) As Long

Private Declare Function GetKeyboardLayout Lib "user32" _

    (ByVal dwLayout As Long) As Long



Private Sub Form_Load()

Dim NoOfKBDLayout As Long, i As Long, j As Long

Dim hKB(24) As Long, BuffLen As Long

Dim Buff As String

Dim RetStr As String

Dim RetCount As Long


Buff = String(255, 0)

hCurKBDLayout = GetKeyboardLayout(0) '取得目前keyboard layout

NoOfKBDLayout = GetKeyboardLayoutList(25, hKB(0)) '取得所有输入法的hkeys

For i = 1 To NoOfKBDLayout

  If ImmIsIME(hKB(i - 1)) = 1 Then '中文输入法

   BuffLen = 255

   RetCount = ImmGetDescription(hKB(i - 1), Buff, BuffLen)

   RetStr = Left(Buff, RetCount)

   Combo1.AddItem RetStr

  Else

   RetStr = "English (American)"  '假设我们的win95非Ime 者只有English

   Combo1.AddItem RetStr      '若有其他者,要去取得keyboardLayout

  End If               ' Name再去Registry中找其对应的名称

  If hKB(i - 1) = hCurKBDLayout Then

   Combo1.Text = RetStr

  End If

Next

ActivateKeyboardLayout hCurKBDLayout, 0 '恢复原来输入法

End Sub

End Function

--------------------编程问答-------------------- 可以模拟键盘操作:Ctrl+Shift 来切换输入法
补充:VB ,  基础类
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,