Add_XML example
Example for Add_XML method
Private Sub Form1_Load(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles MyBase.Load
Call cAvax1.StartAvax()
End Sub
Private Sub Form1_FormClosed(ByVal eventSender As System.Object, ByVal eventArgs As System.Windows.Forms.FormClosedEventArgs) Handles Me.FormClosed
Call cAvax1.EndAvax()
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim sXMLFile As String
Dim x As Single
Dim y As Single
Dim z As Single
Dim vRetHandles As Object
Dim Answer As Boolean
sXMLFile = My.Application.Info.DirectoryPath & "\..\drawing.xml"
Answer = cAvax1.Add_XML(sXMLFile, x, y, z, vRetHandles)
End Sub