View previous topic :: View next topic |
Author |
Message |
dnsi0 I post too much
Reputation: 0
Joined: 04 Jan 2007 Posts: 2674
|
Posted: Fri Nov 30, 2007 2:52 pm Post subject: Quick QUestion... |
|
|
Can some1 list the byte to vb system define thingy?
Example For VB double is the same as double.
I am wondering what is 2byte, 4 byte and 8 byte...
|
|
Back to top |
|
 |
Blader I post too much
Reputation: 2
Joined: 19 Jan 2007 Posts: 2049
|
Posted: Fri Nov 30, 2007 3:03 pm Post subject: |
|
|
I don't think there is one
You can look through the list that they give you
_________________
|
|
Back to top |
|
 |
dnsi0 I post too much
Reputation: 0
Joined: 04 Jan 2007 Posts: 2674
|
Posted: Fri Nov 30, 2007 3:47 pm Post subject: |
|
|
What list???
|
|
Back to top |
|
 |
Blader I post too much
Reputation: 2
Joined: 19 Jan 2007 Posts: 2049
|
Posted: Fri Nov 30, 2007 6:48 pm Post subject: |
|
|
Type:
Dim something as --> Then a list will pop up of possible codes
_________________
|
|
Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Sat Dec 01, 2007 12:32 am Post subject: |
|
|
Byte
8-bit variable that can store 0 to 255.
Integer
16-bit variable that can store -32768 to 32767.
Long
32-bit variable that can store -2,147,483,648 to 2,147,483,647.
Single
32-bit variable that can store:
Negative numbers: -3.402823e38 to -1.401298e-45
Positive numbers: 1.401298e-45 to 3.402823e38
Double
32-bit variable that can store:
Negative numbers: -1.79769313486232e308 to -4.94065645841247e-324
Positive numbers: 4.94065645841247e-324 to 1.79769313486232e308
String
Can store up to approx. 2 billion characters (bytes) that hold a value of 0-255 for each byte. (Hence them being bytes.)
_________________
- Retired. |
|
Back to top |
|
 |
|