Can't Combine Strings from ASCIIencoding.GetString

swu

Active member
Joined
Mar 26, 2005
Messages
33
Programming Experience
1-3
From this code snipet:
VB.NET:
        Dim image As Bitmap = New Bitmap("c:\test.jpg")
        Dim propItems As PropertyItem() = image.PropertyItems
        Dim encoding As New System.Text.ASCIIEncoding()

        Camera = encoding.GetString(propItems(1).Value)

        MsgBox(Camera & " " & Camera)
I can't get the string to combine unless I pass it to a text box and then read it from the text box. Is there another way to 'clean' the string with out the text box work around?

Thanks in advance.
 
Last edited by a moderator:
What does this even mean?
I can't get the string to combine
Please, tell us what actually DOES happen. Then we might be able to diagnose the problem.
 
Back
Top