Quotation concatenation to TextBox output? Topic is solved

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
vergas78
Posts: 7
Joined: 19 Oct 2018, 00:20

Quotation concatenation to TextBox output?

21 Oct 2018, 22:42

Is there anyway to append or concatenate double quotation marks to the output of a textbox?
Please help lol
Rohwedder
Posts: 7622
Joined: 04 Jun 2014, 08:33
Location: Germany

Re: Quotation concatenation to TextBox output?

22 Oct 2018, 01:17

Hallo,
this?:

Code: Select all

MsgBox, "traditional"
MsgBox,% """expression"""
vergas78
Posts: 7
Joined: 19 Oct 2018, 00:20

Re: Quotation concatenation to TextBox output?

22 Oct 2018, 03:14

Gui, Add, Edit, x122 y20 w150 h20 vStreetAddress,
Address := "%StreetAddress%"

I want the Output to look Something like this "123 6th St"
I want to take an input from a Text Box and put quotations around the Input received.
andremarasca
Posts: 14
Joined: 21 Oct 2018, 14:52

Re: Quotation concatenation to TextBox output?

22 Oct 2018, 04:24

Code: Select all

OutputVar := """" . OutputVar . """"
careful with the spacing between points, or will not work
User avatar
SpeedMaster
Posts: 494
Joined: 12 Nov 2016, 16:09

Re: Quotation concatenation to TextBox output?

22 Oct 2018, 14:26

Code: Select all

OutputVar := chr(34) . OutputVar . chr(34)

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: Google [Bot] and 328 guests