Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Solved it, can't figure out how to delete the post
Solved! Go to Solution.
Solved it, can't figure out how to delete the post
Solved! Go to Solution.
Hi @e_frissell
You can use type conversions see this sample on this page here.
I searched convert string and vb.net to get to that page.
The following example uses the CStr function to convert a numeric value to String.
Dim aDouble As Double
Dim aString As String
aDouble = 437.324
' The following line of code sets aString to "437.324".
aString = CStr(aDouble)
@A.Achesont thanks for the reply! I was pretty dumb... partPath was left(4, insPart) - it should have been left(insPart, 4)... oops