Conventions

In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.

Code words in text are shown as follows: "If you want to share your source code, you may use the fileinstall() function and include AU3 source file inside your executable, so you only distribute one app."

A block of code is set as follows:

; add a line comment by; 
; Parameters explained: 4 works for msgbox user interface: ;Yes and No
 ; 6 Return Value works for Yes. 
If Msgbox(4,"Choose","Hello World or exit") = 6 Then ; You pressed Yes 6 
Msgbox(0,"Title Hello World","Sample Hello World") 
Else ; you pressed No or something else 
MsgBox(0,"Hello World Exit","Thanks for using Autoit"&@CRLF&" your name ") 
EndIf 

Any command-line input or output is written as follows:

"localhostdfdf","droot","","cdcol" ===>
"your_host","your_user","your_password","Your_database"
$connected = _MySQL_Real_Connect($MysqlConn,"localhostdfdf","droot","","cdcol")

New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "Double-click or select Msgbox, and then press F1 for function help".

Note

Warnings or important notes appear in a box like this.

Tip

Tips and tricks appear like this.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset