페이지 트리

버전 비교

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

...

코드 블럭
languagevb
titleExample
linenumberstrue
Sub EncryptTest()
	Dim mxmodule As Object

	Set mxmodule = Application.COMAddIns.Item("iMATRIX.ExcelModule.AddinModule").Object
    
	ret = mxmodule.xapi.Encrypt("message")
	debug.print ret
     
	ret = mxmodule.xapi.Decrypt(ret)
	debug.print ret
End Sub

...