J
jim_adams
For a nested structure such as:
Dim userVariable as one
structure one
dim a as string
dim b() as two
end structure
structure two
dim c as string
dim d as string
end structure
before I do the monkey work of creating a VB.Net UI for an end user to
fill out values for userVariable, I was wondering if there's a generic
code sample that will take in a structure and provide a dynamic form to
fill out its properties. Although the nested structure I'm working
with is more complex than this example, all data types are either
strings or integers.
Any insight is greatly appreciated.
Thanks,
Jim
Dim userVariable as one
structure one
dim a as string
dim b() as two
end structure
structure two
dim c as string
dim d as string
end structure
before I do the monkey work of creating a VB.Net UI for an end user to
fill out values for userVariable, I was wondering if there's a generic
code sample that will take in a structure and provide a dynamic form to
fill out its properties. Although the nested structure I'm working
with is more complex than this example, all data types are either
strings or integers.
Any insight is greatly appreciated.
Thanks,
Jim