페이지 트리

버전 비교

  • 이 줄이 추가되었습니다.
  • 이 줄이 삭제되었습니다.
  • 서식이 변경되었습니다.

...

코드 블럭
languagevb
titleExample
linenumberstrue
Sub EncryptTestDecryptTest()
	Dim mxmodule As Object
	Set mxmodule = Application.COMAddIns.Item("ExcelModule.AddinModule").Object

	ret = mxmodule.xapi.Encrypt("message")
	debug.print ret

	ret = mxmodule.xapi.Decrypt(ret)
	debug.print ret
End Sub