version = CreateObject("roDeviceInfo").GetVersion()
major = Mid(version, 3, 1)
minor = Mid(version, 5, 2)
build = Mid(version, 8, 5)
"RokuMarkn" wrote:
Yes, you can rely on that format. The first two characters are a hardware identifier, the next four are the major and minor version number, and the eighth through twelfth characters are the build number. The letters (E and A) should be ignored.
--Mark