Posted By
Mike Krebs
06-11-2018 12:59
Found In
Egroup:
Graphics
\
view thread
For the OnSetText, I needed to turn the double, rhs into a string first, then get a substring of that. Here is the updated code you could put in OnSetText. dim parts as string() = Text.split(".") dim rhs as double = Cint(parts(1))*32 Text = parts(0) + "'" + Cstr(rhs).Substring(0,4) ...
|