I guess that the answer is "Yes", but still need to know for sure.
Here's the Q.: does VB .NET (specifically - in MS VS 2012) support String.PadRight/Left?
IOW:
would the following work in VB?
Regards,
Ilya
Here's the Q.: does VB .NET (specifically - in MS VS 2012) support String.PadRight/Left?
IOW:
would the following work in VB?
Code:
Dim cStr As String
cStr = "qwerty"
If LEN(cStr) < 10 Then
cStr = cStr.PadRight(10)
End If
Regards,
Ilya