TylerM

I'm trying to read the following data in my application:

"FILE_PATH"
{

"SECTION_NAME"
{
"PropertyName" "PropertyValue"
}

}

It almost has the same structure as XML in a few senses.

Does anyone have any ideas on how I can write a method that would read and write:

FILE_PATH
SECTION_NAME
PropertyName
and set PropertyValue when PropertyName and SECTION_NAME are specified.



Re: Visual Basic General Object Oriented - Read/Write XML-Like data. This does XML writing in VS2003.

Spidermans_DarkSide

Imports System.io

Imports System.Xml.Serialization

Public Class Form1

Inherits System.Windows.Forms.Form

#Region " Windows Form Designer generated code "

Public Sub New()

MyBase.New()

'This call is required by the Windows Form Designer.

InitializeComponent()

'Add any initialization after the InitializeComponent() call

End Sub

'Form overrides dispose to clean up the component list.

Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)

If disposing Then

If Not (components Is Nothing) Then

components.Dispose()

End If

End If

MyBase.Dispose(disposing)

End Sub

'Required by the Windows Form Designer

Private components As System.ComponentModel.IContainer

'NOTE: The following procedure is required by the Windows Form Designer

'It can be modified using the Windows Form Designer.

'Do not modify it using the code editor.

Friend WithEvents Button1 As System.Windows.Forms.Button

<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()

Me.Button1 = New System.Windows.Forms.Button

Me.SuspendLayout()

'

'Button1

'

Me.Button1.Location = New System.Drawing.Point(72, 160)

Me.Button1.Name = "Button1"

Me.Button1.TabIndex = 0

Me.Button1.Text = "Button1"

'

'Form1

'

Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)

Me.ClientSize = New System.Drawing.Size(292, 266)

Me.Controls.Add(Me.Button1)

Me.Name = "Form1"

Me.Text = "Form1"

Me.ResumeLayout(False)

End Sub

#End Region

Public Sub writeErrorData(ByVal strInfo As String, ByVal strDescricao As String, _

ByVal strNumeroErro As String)

Dim strCodUtilizador As String = ""

Dim erro As New clsErro(strInfo, strData, strDescricao, strNumeroErro, strCodUtilizador)

Dim erroPath As String = erro.ficheiroErro.ToString

Dim xRoot As New XmlRootAttribute("Erro")

xRoot.IsNullable = True

Dim writer As New XmlSerializer(GetType(clsErro), xRoot)

Dim file As New StreamWriter(erroPath, True)

writer.Serialize(file, erro)

file.Close()

End Sub

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

writeErrorData("TestString", "Testing", "7")

End Sub

End Class

 

Paste the above code into a completely empty code window.

It use a CLASS.The CLASS code is my 2nd post for this thread.

Sorry about the foreign words. It is a program i sorted out for a foreigner, and i don't know what they mean either , He just had a very minor error in the code originally.

 

 

Regards,

S_DS

 

 






Re: Visual Basic General Object Oriented - Read/Write XML-Like data. This does XML writing in VS2003.

Spidermans_DarkSide

Imports System.io

Imports System.Xml.Serialization

<XmlRoot("Erros"), XmlType("Erros")> _

Public Class clsErro

Private m_Info As String

Private m_datData As Date

Private m_strDescricao As String

Private m_strNumeroErro As String

Private m_strCodigoUtilizador As String

Public strLocalizacaoBds As String = "C:\" 'This is a part path string i guess

Public m_strLocalizacaoFicheiroErro As String = strLocalizacaoBds & "erro.XML"

Public Sub New()

m_datData = Now.Date

m_Info = ""

m_strDescricao = ""

m_strNumeroErro = ""

m_strCodigoUtilizador = ""

End Sub

Public Sub New(ByVal strInfo As String, ByVal datdata As Date, ByVal strDescricao As String, _

ByVal strNumeroErro As String, ByVal strCodUtilizador As String)

m_datData = datdata

m_Info = strInfo

m_strDescricao = strDescricao

m_strNumeroErro = strNumeroErro

m_strCodigoUtilizador = strCodUtilizador

End Sub

Public ReadOnly Property ficheiroErro()

Get

Return m_strLocalizacaoFicheiroErro

End Get

End Property

Public Property data() As Date

Get

Return m_datData

End Get

Set(ByVal value As Date)

m_datData = value

End Set

End Property

Public Property descricao() As String

Get

Return m_strDescricao

End Get

Set(ByVal value As String)

m_strDescricao = value

End Set

End Property

Public Property numeroErro() As String

Get

Return m_strNumeroErro

End Get

Set(ByVal value As String)

m_strNumeroErro = value

End Set

End Property

Public Property utilizador() As String

Get

Return m_strCodigoUtilizador

End Get

Set(ByVal value As String)

m_strCodigoUtilizador = value

End Set

End Property

Public Property info() As String

Get

Return m_Info

End Get

Set(ByVal value As String)

m_Info = value

End Set

End Property

End Class