View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Jacob Skaria Jacob Skaria is offline
external usenet poster
 
Posts: 8,520
Default Asterisk after String Delcaration????

Please refer

http://msdn.microsoft.com/en-us/libr...y4(VS.71).aspx
http://msdn.microsoft.com/en-us/libr...y4(VS.80).aspx

--
If this post helps click Yes
---------------
Jacob Skaria


"Excel Monkey" wrote:

I just came across some string variable declarations that I have not seen
before and was wondering if someone could explain what they mean. I have
never seen the asterisk used before like this. Is this a VBA thing? Lastly
does it translate into VB.Net?

Dim strBuffer()As String * 1

and then within a
Private Type udtWIN32_FIND_DATA
cFileName As String * 260
cAlternat As String * 14
End Type

Thanks