I need to convert a char(17) to numeric for a MSSQL view. In VB it goes like this
If PartType <> "" Then
mantissa = CInt(Mid(SideMillType, 5, 2))
num = CInt(Mid(SideMillType, 7, 2))
den = CInt(Mid(SideMillType, 9, 2))
Width = CDbl(mantissa + (num / den))
End If...