SparkSoft 0 Posted November 30, 2010 $var = ""*" this doesnt work how can i put quotes in a string [center]First Ever Script/App[/center][center]Simple Battery Meter[/center] Share this post Link to post Share on other sites
bogQ 91 Posted November 30, 2010 '"*' TCP server and client - Learning about TCP servers and clients connectionAu3 oIrrlicht - Irrlicht projectAu3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related)There are those that believe that the perfect heist lies in the preparation.Some say that it’s all in the timing, seizing the right opportunity. Others even say it’s the ability to leave no trace behind, be a ghost. Share this post Link to post Share on other sites
ZacUSNYR 4 Posted November 30, 2010 Use a single quote around the variable $MyVariable = 'This variable has "quotes" dude' Share this post Link to post Share on other sites
SparkSoft 0 Posted November 30, 2010 Just found that out just after i posted sorry Thanks Though [center]First Ever Script/App[/center][center]Simple Battery Meter[/center] Share this post Link to post Share on other sites
czardas 1,269 Posted November 30, 2010 Another useful tip is to use the ASCII code. Check the function Chr in the help file. $var = Chr(34) & "*" This method allows you to build practically any string you want, without interfering with the AutoIt code. operator64 ArrayWorkshop Share this post Link to post Share on other sites