I know how to add a number (IntToStr(); ) but I'm stumped on how to add a var that is a string to a string.
I was thinking of a few ways but I really need help. I could do this in two ways. The first would be a StrToStr(); function (if one exists) like IntToStr();. The other would be something like this-Code:var username: string; begin username := 'groogie'; SendKeys( ??? ); end.
But that obviously won't work. I tried putting a backslash in there (like in other languages) but it didn't work. - '\''Code:var groogie: string; begin username := 'groogie'; SendKeys(''' + username + '''); end.
Any help?


Reply With Quote





