-
ok...first...whats the command to send a blank line to a text box???
text1.text = text1.text + "Whatever" + vbkeyreturn?????
when i do that it just puts
Whatever 13
the actual ascii code for enter.
and how do you deal with this error??
sckAddressInUse 10048 Address in use.
its a winsock error that is pissing me off!!
please respond asap
-KnIgHt
-ICQ 17743984
-
I can answer the first question, but not the second one. To move to the next line just add chr$(13) for character string 13.
-
ok....thanks for the first answer but can anyone else help me out with the second question???
-
ok...that little chr$(13) doesn't work
it just puts a little square box thingie in the textbox!!
i need help with the first question again now!!
-
ok....nevermind again....i figured out that to put a new line in a text box you use vbNewLine
now....who can help me out with this error??
sckAddressInUse 10048 Address in use.
its a winsock error that is pissing me off!!
-
if it just put a little square box thing in the textbox, it means that the textbox is set to not use multilines. Just change it to multiline=true.