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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top