E
Edward
VB.NET
I have a bunch of textboxes on my form
txtPart1
txtPart2
....
txtPart16
When the user presses "Ok", I need to concatenate the values into a
single string and paste it into an email.
I wondered about this (AIR CODE):
Dim strParts As String
Dim iintIndex As Integer
For iintIndex = 1 To 16 Step 1
strParts &= Me.txtPart & iintIndex.ToString.Text
Next
Is something like this possible? I realise the above is syntactically
incorrect, by the way!
TIA
Edward
I have a bunch of textboxes on my form
txtPart1
txtPart2
....
txtPart16
When the user presses "Ok", I need to concatenate the values into a
single string and paste it into an email.
I wondered about this (AIR CODE):
Dim strParts As String
Dim iintIndex As Integer
For iintIndex = 1 To 16 Step 1
strParts &= Me.txtPart & iintIndex.ToString.Text
Next
Is something like this possible? I realise the above is syntactically
incorrect, by the way!
TIA
Edward