Wondering if this is possible - I've tried a few ways - and if it is possible - I keep getting the syntax wrong.
.
.
.
Dim sbpnl As StringBuilder
sbpnl.Initialize
sbpnl.Append("pnl").Append(aValue)
Dim thePanel As Panel
thePanel=sbpnl
.
.
.
I run into the problem on the very last line during compile - where it takes the string builder into thePanel - I'm not sure if that sort of conversion is possible.
.
.
.
Dim sbpnl As StringBuilder
sbpnl.Initialize
sbpnl.Append("pnl").Append(aValue)
Dim thePanel As Panel
thePanel=sbpnl
.
.
.
I run into the problem on the very last line during compile - where it takes the string builder into thePanel - I'm not sure if that sort of conversion is possible.
Last edited: