Obviously I don't think so, surely my fault!
I want to execute Windows 10 default OnScreen Keyboard with a button launching the original file called osk.exe.
I used
and
with no effects.
If execute a simple .bat file with this code
All works fine and the keyboard is launched correctly.
Any solution?
Thanks in advance as usual.
I want to execute Windows 10 default OnScreen Keyboard with a button launching the original file called osk.exe.
I used
Code:
File.Run(_SystemFolder.."\\osk.exe", "", _SystemFolder.."\\osk.exe", SW_SHOWNORMAL, false);
Code:
Shell.Execute(_SystemFolder.."\\osk.exe", "open", "", "", SW_SHOWNORMAL, false);
If execute a simple .bat file with this code
Code:
start osk.exe
Any solution?
Thanks in advance as usual.
Comment