using datagridview in a form with larger number of rows and columns

c.vaibhav

Member
Joined
May 12, 2009
Messages
22
Programming Experience
Beginner
I have a datagirdview which I need to process.. I have more than 50000 rows and 200 columns in it..

datagridview accepts columnindex and rowindex only in the form of integer. Is there any way in which I can use long instead of integer.

Thanks..

Vaibhav
 
Last edited:
Why do you want to sue a Long? I'd suggest you learn the .NET Datatypes:
VB.NET:
Bool - 1 Byte
Short (Int16) - 2 Byte (from -32786 to +32786, Unsigned from 0 to 65536)
Integer (Int32) - 4 Byte (from -2M to + 2M, Unsigned from 0 to +4M)
Long (Int64) - 8 Byte (from a pretty large number to a pretty large number)
Decimal - 16(?) Byte (also some pretty large numbers)

You see, from VB6 to VB.NET were the datatypes doubled in size.

Bobby
 
Back
Top