Jump to content

Recommended Posts

Posted

Hi all

i need a space between user and the $use var

TCPSend( $Socket,"user"<--space-->&$use &@CR)

so when it sends it would look like user michael

now it looks like usermichael i need to space the user and michael

would there be a way to do this ?

i don't know how to do this in au3

thank you

michael

$use= IniRead("test.ini", "user", "key", "NotFound")
TCPSend( $Socket,"user"&$use &@CR)
Posted

TCPSend($Socket, "user " & $use & @CR)

OR

TCPSend($Socket, "user" & " " & $use & @CR)

Works good thank you very much i never thought to use ""

the --->" " is a space ?

thank you

michael

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...