Results 1 to 10 of 10

Thread: What is that character ?

  1. #1

    Thread Starter
    Frenzied Member sebs's Avatar
    Join Date
    Sep 2000
    Location
    Aylmer,Qc
    Posts
    1,606

    What is that character ?

    Hey ,

    I'm uploading a file and then using the dictionary to
    go thru my form field!

    but i get a damm extra char and i don't know how to get rid
    of it, cuz i don't know what it is ?

    here what i get if i view it from the source

    Code:
    h
    
    Testing
    h
    I can replace to vbCrLf but it come to that

    Code:
    h
    Testingh
    so there's still one damm character!

    here's what i see from my db



    you see that litle square, that the character i can't get rid of!!

    please help!

    i'm using asp!

  2. #2
    Frenzied Member jjortiz's Avatar
    Join Date
    Mar 2001
    Location
    NYC
    Posts
    1,768
    Have you tried the trim method?

  3. #3
    Megatron
    Guest
    Here's a cheap way of doing it
    VB Code:
    1. For x = 1 To 255
    2.         If "%" = Chr$(x) Then MsgBox "This is character " & x
    3.     Next x
    Replace the % with your character.

  4. #4
    Addicted Member kidlaley's Avatar
    Join Date
    Jun 2002
    Location
    California
    Posts
    159

    Isn't that the tab character???

    Just curious!!!

    There's only Three kinds of people in this world.....
    Those that know how to count, and those that do not......
    ]

  5. #5

    Thread Starter
    Frenzied Member sebs's Avatar
    Join Date
    Sep 2000
    Location
    Aylmer,Qc
    Posts
    1,606
    yeah but with no luck!

    i really don't know what it is!!

    could it be a line break ??

  6. #6

    Thread Starter
    Frenzied Member sebs's Avatar
    Join Date
    Sep 2000
    Location
    Aylmer,Qc
    Posts
    1,606

    Re: Isn't that the tab character???

    Originally posted by kidlaley
    Just curious!!!

    well, i tried replacing all vbTab with "" and did'nt work!

    tx

  7. #7

    Thread Starter
    Frenzied Member sebs's Avatar
    Join Date
    Sep 2000
    Location
    Aylmer,Qc
    Posts
    1,606
    Originally posted by Megatron
    Here's a cheap way of doing it
    VB Code:
    1. For x = 1 To 255
    2.         If "%" = Chr$(x) Then MsgBox "This is character " & x
    3.     Next x
    Replace the % with your character.
    tx, but i can't copy the little square!!!!

    what did you mean!!

  8. #8
    Frenzied Member jjortiz's Avatar
    Join Date
    Mar 2001
    Location
    NYC
    Posts
    1,768
    Try this to compare your character visually.

    VB Code:
    1. For i = 0 To 255
    2.         Debug.Print i & " = " & Chr(i)
    3.     Next

  9. #9

    Thread Starter
    Frenzied Member sebs's Avatar
    Join Date
    Sep 2000
    Location
    Aylmer,Qc
    Posts
    1,606
    yeah but i think there more than one character with a square,
    is'nt there!!

  10. #10
    Frenzied Member jjortiz's Avatar
    Join Date
    Mar 2001
    Location
    NYC
    Posts
    1,768
    That is true. Where are you getting this information from a file.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width