자료실

부자는 돈을 써서 시간을 아끼지만 가난한 사람은 시간을 써서 돈을 아낀다

vb6.0/vba

IT HUB를 찾아주셔서 감사합니다.

vb6.0vba [vb6.0/vba] htmlfile(MSHTML.HTMLDocument) 를 이용한 스크립트를 통한 encode / deco…

페이지 정보

profile_image
작성자 하나를하더라도최선을
댓글 0건 조회 3,512회 작성일 23-03-11 08:43

본문

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

댓글목록

등록된 댓글이 없습니다.