Conversiont Function

  • Thread starter Thread starter Jim Heavey
  • Start date Start date
J

Jim Heavey

If you have an object array with values such as Int16 or Int64, what
conversion function do you use on them, i.e CInt(myObject(1))? There is no
CInt16, so what would you use?


Thanks in advance for your assistance!!!!
 
Jim,
Int32 is an Integer, CInt converts to integer.

Int16 is a Short, CShort converts to short.

Int64 is a Long, CLng converts to long.

Hope this helps
Jay
 
Back
Top