목록Ctrl (1)
먼지 쌓인 키보드
(UFT SendKeys) 키보드 입력처럼 텍스트 입력 하는 방법
'설정 기초 Set WshShell = CreateObject("Wscript.Shell") ' "테스트"라는 문자열 입력하고싶을때 WshShell.Sendkeys "테스트" ' 엔터키 누를때 WshShell.Sendkeys "{enter}" 'ctrl 키 누를때 WshShell.Sendkeys "^" 'alt 키 누를때 WshShell.Sendkeys "%" '응용방법 : ctrl + c 를 누르고싶다면 WshShell.Sendkeys "^c"
공부 관련/Programming
2023. 3. 6. 16:06