I am wondering if this is possible. I have a List Table (lstTable) that is on the same form that I am trying to fill in with information from a public structure (ELEM_DATA). I understand nested with statements will work if it is within the same scope but how can I do this with example 2 below:

Example 1:

With me.lstTable.Items(RECORD)
     .SubItems(1).text = ELEM_DATA(RECORD).name
     .SubItems(2).text = ELEM_DATA(RECORD).number
end with

Example 2:

With me.lstTable.Items(RECORD)
     With ELEM_DATA(RECORD)
     .SubItems(1).text = .name
     .SubItems(2).text = .number
     end with
end with

I didnt know if it is possible or if it would be as simple as changing (.name) to something else.

link|improve this question

Did you try it? What happened when you did? – Lasse V. Karlsen Jul 11 '11 at 21:52
When I tried it kept saying .name was not a member of lstTable. – jinanwow Jul 11 '11 at 23:48
feedback

1 Answer

up vote 2 down vote accepted

Nested With statements work (see comment about conflicts). Unfortunately you can't use the outer members inside the inner with. But since your outer WITH is a refernce type you could use a local variable to "alias" it as you suggest in you comment.

Dim l = me.lstTable.Items(RECORD) ' requires 2008 and option infer
With ELEM_DATA(RECORD)
   l.SubItems(1).text = .name
End With

Here's a link to show how nested WITH statements can used.

http://ideone.com/agjne

link|improve this answer
But only on unique members. If both classes have members with same name, then those members cant be used with the dot-notation and must be called explicit using the "full path". – Stefan Jul 12 '11 at 0:23
@Stefan: yeah, I meant to include that, but it got lost in my editing. Thanks for pointing it out. – jmoreno Jul 12 '11 at 1:36
Would it be possible to do something similar as With ELEM_DATA(RECORD) As E and do E.name and E.number instead of doing the full path? – jinanwow Jul 12 '11 at 14:16
@jinanwow: you can't do that directly like you can in SQL, but you could copy the structure to another variable...you could also create a sub that does the copying. – jmoreno Jul 12 '11 at 15:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.