|
-
Jul 17th, 2002, 01:37 PM
#1
Thread Starter
Frenzied Member
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
I can replace to vbCrLf but it come to that
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!
-
Jul 17th, 2002, 01:40 PM
#2
Frenzied Member
Have you tried the trim method?
-
Jul 17th, 2002, 01:42 PM
#3
Here's a cheap way of doing it
VB Code:
For x = 1 To 255
If "%" = Chr$(x) Then MsgBox "This is character " & x
Next x
Replace the % with your character.
-
Jul 17th, 2002, 01:42 PM
#4
Addicted Member
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......
 ]
-
Jul 17th, 2002, 01:43 PM
#5
Thread Starter
Frenzied Member
yeah but with no luck!
i really don't know what it is!!
could it be a line break ??
-
Jul 17th, 2002, 01:44 PM
#6
Thread Starter
Frenzied Member
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
-
Jul 17th, 2002, 01:45 PM
#7
Thread Starter
Frenzied Member
Originally posted by Megatron
Here's a cheap way of doing it
VB Code:
For x = 1 To 255
If "%" = Chr$(x) Then MsgBox "This is character " & x
Next x
Replace the % with your character.
tx, but i can't copy the little square!!!!
what did you mean!!
-
Jul 17th, 2002, 01:45 PM
#8
Frenzied Member
Try this to compare your character visually.
VB Code:
For i = 0 To 255
Debug.Print i & " = " & Chr(i)
Next
-
Jul 17th, 2002, 01:46 PM
#9
Thread Starter
Frenzied Member
yeah but i think there more than one character with a square,
is'nt there!!
-
Jul 17th, 2002, 01:48 PM
#10
Frenzied Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|