|
-
Jun 2nd, 2003, 01:59 AM
#1
stupid little question
is there a difference between these two?
Dim b As Integer()
Dim a() As Integer
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Jun 2nd, 2003, 02:16 AM
#2
Yeah where the () is placed.
No there is no functional difference to my knowledge.
-
Jun 2nd, 2003, 02:22 AM
#3
Originally posted by Edneeis
Yeah where the () is placed.
No there is no functional difference to my knowledge.
heh I had never seen the first one, where you put the () after the type
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Jun 2nd, 2003, 04:56 AM
#4
Frenzied Member
heh I had never seen the first one
Its used in VBA.
Last edited by Lunatic3; Jun 4th, 2003 at 03:59 AM.
'Heading for the automatic overload'
Marillion, Brave, The Great Escape, 1994
'How will WE stand the FIRE TOMORROW?'
Eloy, Silent Cries and Mighty Echoes, The Vision - Burning, 1979
-
Jun 4th, 2003, 03:58 AM
#5
Member
dim a as integer
dim b() as integer
b() is Array
manesh
========================
Think Twice when u Start or Stop.
========================
-
Jun 4th, 2003, 04:14 AM
#6
Originally posted by MrPolite
heh I had never seen the first one, where you put the () after the type
You also use the first one when you want a function or something to return an array, since the first set of parathesis are for the arguments.
Public Function Example() As String()
-
Jun 4th, 2003, 07:57 AM
#7
Lively Member
Originally posted by manesh
dim a as integer
dim b() as integer
b() is Array
manesh
true, but that wasn't the original question.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|