From 56a823c40e8f440792ddce241deea4e3da7007a6 Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Sat, 4 Jun 2022 10:18:25 -0300 Subject: [PATCH] Update chapter-05-gbdialog-reference.md --- book/chapter-05-gbdialog-reference.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/book/chapter-05-gbdialog-reference.md b/book/chapter-05-gbdialog-reference.md index 43908d38..c62746f6 100644 --- a/book/chapter-05-gbdialog-reference.md +++ b/book/chapter-05-gbdialog-reference.md @@ -35,7 +35,7 @@ The following file types are loaded from a .gbdialog package: `.vbs`, `.vb`, `.b | HEAR _variable_ AS HOUR | | | HEAR _variable_ AS MONEY | | | HEAR _variable_ AS MOBILE | | -| HEAR _variable_ AS FILE | Returns a file uploaded by user to be saved with SAVE. | +| HEAR _variable_ AS FILE | Returns a file uploaded by user to be saved with SAVE _variable_ AS "folder/folder/file" on .gbdrive. | | HEAR _variable_ AS AUDIO | Returns a audio uploaded by user to be saved with SAVE. | | HEAR _variable_ AS ZIPCODE | | | HEAR _variable_ AS "Abacate", "Maçã", "Morango" | Displays the specified menu and waits for this input until user select one of them. | @@ -48,6 +48,11 @@ The following file types are loaded from a .gbdialog package: `.vbs`, `.vb`, `.b | SEE CAPTION OF _url_ AS _variable_ | Extracts an caption, using a pre-trained neural network, from a image. | | SEE TEXT OF _url_ AS _variable_ | Extracts text from the image in a OCR (Optical Character Recognition) feature. | | SET HTTP PASSWORD = _value_ | Defines the HTTP password to be used to next GET call. | +| data = SELECT name, address FROM data | Use SQL to manipulate a data variable returned from FIND or an array | +| _variable_ = CHART "pie", data| Generates a chart from data. + + + ## How To