Windream: Fix ConvertIndexValue by using ToInt32 instead of ToInt16
This commit is contained in:
parent
e733c7919c
commit
a413145214
@ -76,10 +76,10 @@ Public Class Helpers
|
||||
Return Value
|
||||
Case INDEX_TYPE_INTEGER
|
||||
Value = Value.Replace(" ", String.Empty)
|
||||
Return Convert.ToInt16(Value)
|
||||
Return Convert.ToInt32(Value)
|
||||
Case INDEX_TYPE_VECTOR_INTEGER
|
||||
Value = Value.Replace(" ", String.Empty)
|
||||
Return Convert.ToInt16(Value)
|
||||
Return Convert.ToInt32(Value)
|
||||
Case INDEX_TYPE_VECTOR_INTEGER_64BIT
|
||||
Value = Value.Replace(" ", String.Empty)
|
||||
Return Convert.ToInt64(Value)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user