SaveAvaxPropertiesToXML example
Example for SaveAvaxPropertiesToXML 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 xmlDoc As Xml.XmlDocument
xmlDoc = CAvax1.SaveAvaxPropertiesToXML
xmlDoc.Save(My.Application.Info.DirectoryPath & "\test.xml")
End Sub