vb6.0vba [vb6.0/vba] htmlfile(MSHTML.HTMLDocument) 를 이용한 스크립트를 통한 encode / deco…
페이지 정보
본문
Function encode(str)
Set htmlfile = CreateObject("htmlfile")
htmlfile.parentWindow.execScript "function encode(s) {return encodeURIComponent(s)}", "jscript"
encode = htmlfile.parentWindow.encode(str)
End Function
Function decode(str)
Set htmlfile = CreateObject("htmlfile")
htmlfile.parentWindow.execScript "function decode(s) {return decodeURIComponent(s)}", "jscript"
decode = htmlfile.parentWindow.decode(str)
End Function
- 이전글[vb6.0/vba] WinHttp를 이용한 파일 다운로드 downloadFile 함수 23.03.11
- 다음글로또 6/45 번호 회차별 당첨번호 크롤링 23.02.16
댓글목록
등록된 댓글이 없습니다.