Phylum Posted December 19, 2003 Posted December 19, 2003 What are the biggest and smallest numerical values (not the scientific notation) for singles and doubles and integers? Phylum Quote
Moderators Robby Posted December 19, 2003 Moderators Posted December 19, 2003 it's all in VS help http://ms-help://MS.VSCC/MS.MSDNVS/vblr7/html/vagrpdatatype.htm Quote Visit...Bassic Software
Grimfort Posted December 19, 2003 Posted December 19, 2003 You can use the properties: Integer.MinValue Single.MaxValue Double.MaxValue (etc etc) to get this. Integer min = -2147483648 Integer max = 2147483647 Single min = -3.402823E+38 Single max = - 3.402823E+38 Double min = -1.79769313486232E+308 Double max = 1.79769313486232E+308 Quote
samsmithnz Posted December 19, 2003 Posted December 19, 2003 Check out http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vblr7/html/vagrpDataType.asp This has everything you need (and took me 20 seconds to find) Quote Thanks Sam http://www.samsmith.co.nz
Grimfort Posted December 19, 2003 Posted December 19, 2003 Yes, the search button is your friend :). Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.