Hello,
I want to show a virtual keyboard and set for text a filename to edit it.
When the Virtual keyboard is show:
- the filename is set
- the cursor is at the last character
- then the user type a character, it's set at the end of the text
There is the vb.net code I used:
Dim DLG_VirtualKeyboard As VirtualKeyboard
DLG_VirtualKeyboard = GUIWindowManager.GetWindow(GUIWindow.Window.WINDOW_VIRTUAL_KEYBOARD)
DLG_VirtualKeyboard.Reset()
DLG_VirtualKeyboard.Text = filename
DLG_VirtualKeyboard.DoModal(GUIWindowManager.ActiveWindow)
Result:
The virtualkeyboard is show but the text isn't set.
I see a lot of example but I don't know what is wrong
Thanks in advance
I want to show a virtual keyboard and set for text a filename to edit it.
When the Virtual keyboard is show:
- the filename is set
- the cursor is at the last character
- then the user type a character, it's set at the end of the text
There is the vb.net code I used:
Dim DLG_VirtualKeyboard As VirtualKeyboard
DLG_VirtualKeyboard = GUIWindowManager.GetWindow(GUIWindow.Window.WINDOW_VIRTUAL_KEYBOARD)
DLG_VirtualKeyboard.Reset()
DLG_VirtualKeyboard.Text = filename
DLG_VirtualKeyboard.DoModal(GUIWindowManager.ActiveWindow)
Result:
The virtualkeyboard is show but the text isn't set.
I see a lot of example but I don't know what is wrong
Thanks in advance