I have posted a question about user-defined types and I want to address the question a different way so I am submitting this post.
If I declare a user-defined type like follows:
Public Type Input_Header
RecType As String * 3
HeaderDate As String * 8
FileName As String * 44
End Type
Can I create a 55 character or less string and assign it to a Input_Header variable that I instantiate?
In otherwords, can I do the following?
Dim ihHeader As Input_Header
Dim strHeader As String
strHeader = "000121603extractbilling121603.txt"
ihHeader = strHeader
Thank you for your help.
Tammy
Thank you for your help.
Tammy
If I declare a user-defined type like follows:
Public Type Input_Header
RecType As String * 3
HeaderDate As String * 8
FileName As String * 44
End Type
Can I create a 55 character or less string and assign it to a Input_Header variable that I instantiate?
In otherwords, can I do the following?
Dim ihHeader As Input_Header
Dim strHeader As String
strHeader = "000121603extractbilling121603.txt"
ihHeader = strHeader
Thank you for your help.
Tammy
Thank you for your help.
Tammy