M
Marco Trapanese
Hello,
I have to define a structure for a plain-text input file.
It should have some general text fields and a long table of values.
These values are grouped by rows and can be integers, floats, strings.
Here an example:
Title
Description
Others...
val11, val12, val13
val21, val22, val23
Where valxy could be:
10
45.2
Hello! This is a string, indeed.
-56.1234
Well, I have a couple of questions:
1) should I use an xml file?
Something like this:
<header>
Title
Description
Others...
</header>
<data>
val11, val12, val13
val21, val22, val23
</data>
2) how can I manage strings? Strings might contain ',' that is the
separator character. If I use double quotes ( "mystring" ) does VB
understand it's a string?
Thanks
Marco / iw2nzm
I have to define a structure for a plain-text input file.
It should have some general text fields and a long table of values.
These values are grouped by rows and can be integers, floats, strings.
Here an example:
Title
Description
Others...
val11, val12, val13
val21, val22, val23
Where valxy could be:
10
45.2
Hello! This is a string, indeed.
-56.1234
Well, I have a couple of questions:
1) should I use an xml file?
Something like this:
<header>
Title
Description
Others...
</header>
<data>
val11, val12, val13
val21, val22, val23
</data>
2) how can I manage strings? Strings might contain ',' that is the
separator character. If I use double quotes ( "mystring" ) does VB
understand it's a string?
Thanks
Marco / iw2nzm