summaryrefslogtreecommitdiffstats
path: root/indenters/examples/example.vb
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-09-18 14:21:27 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-09-18 14:21:27 +0900
commit8d6255b84d9fb6a585d010119f289baff0794df9 (patch)
tree5e2a9bb3ea6f85217a9e01cee5634dca5170ca50 /indenters/examples/example.vb
parent3db895919a4cd36972dd5241f480a68fe0f4eb4d (diff)
downloaduniversal-indent-gui-tqt-8d6255b84d9fb6a585d010119f289baff0794df9.tar.gz
universal-indent-gui-tqt-8d6255b84d9fb6a585d010119f289baff0794df9.zip
Added indenter examples
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'indenters/examples/example.vb')
-rwxr-xr-xindenters/examples/example.vb50
1 files changed, 50 insertions, 0 deletions
diff --git a/indenters/examples/example.vb b/indenters/examples/example.vb
new file mode 100755
index 0000000..94adf39
--- /dev/null
+++ b/indenters/examples/example.vb
@@ -0,0 +1,50 @@
+Dim docRoot As New ChilkatXml
+
+Dim success As Long
+
+docRoot.Tag = "myDoc"
+
+' To zip compress the content, set this flag to 1
+Dim zipContent As Long
+zipContent = 0
+' To 128-bit AES encrypt the content, set this flag to 1
+Dim encryptContent As Long
+encryptContent = 0
+Dim encryptPassword As String
+encryptPassword = ""
+
+Dim pdfNode As ChilkatXml
+
+Set pdfNode = docRoot.NewChild("pdf","")
+
+' Embed a PDF into XML
+success = pdfNode.SetBinaryContentFromFile("sample.pdf",zipContent,encryptContent,encryptPassword)
+If (success <> 1) Then
+ MsgBox pdfNode.LastErrorText
+
+ Exit Sub
+End If
+
+MsgBox pdfNode.LastErrorText
+
+' Display the entire XML document:
+Text1.Text = Text1.Text & docRoot.GetXml() & vbCrLf
+
+' Get the Base64-encoded content and display it:
+Text1.Text = Text1.Text & pdfNode.Content & vbCrLf
+
+' Extract the binary content from XML:
+Dim unzipContent As Long
+unzipContent = 0
+Dim decryptContent As Long
+decryptContent = 0
+Dim decryptPassword As String
+decryptPassword = ""
+success = pdfNode.SaveBinaryContent("out.pdf",unzipContent,decryptContent,decryptPassword)
+If (success <> 1) Then
+ MsgBox pdfNode.LastErrorText
+
+ Exit Sub
+End If
+
+MsgBox "Success!" \ No newline at end of file