v4.21
|
@ -1,9 +1,9 @@
|
|||
# <H1 align="center">Модуль "Закрыть Excel-файл"</h1>
|
||||
# <H1 align="center">Module «Close Excel-file»</h1>
|
||||
|
||||
<p> Excel-модуль работает с файлами следующим образом – как только он начинает работу с некоторым файлом, то он открывает его (в фоновом, незаметном для пользователя, режиме), и держит открытым до конца работы робота. Это было сделано для ускорения работы модуля Excel – если модулей, использующих один и тот же файл, к примеру, несколько, пришлось бы несколько раз открывать и сохранять файл столько раз, сколько он используется что отразилось бы на быстродействии программы. В связи с этим, файл открывается при первом его использовании в модуле Excel и сохраняется только один раз – в самом конце. Но! Так как файл является открытым, с самим файлом нельзя ничего делать – переносить, архивировать, удалять за ненадобностью (например, провели расчеты в новом файле, взяли данные и затем его удалили), так как он занят. Для таких задач существует модуль «Закрыть Excel-файл» - он закрывает и сохраняет заданные ему файлы. Если эти файлы впоследствии снова будут использоваться – они опять откроются и, в следующий раз, будут закрыты либо этим же модулем, либо в конце работы робота.</p>
|
||||
## Интерфейс модуля
|
||||
<p> Интерфейс модуля состоит из одного поля и списка путей к файлам, которые необходимо закрыть.</p>
|
||||
<p> Excel module works with files in the following way – as soon as it starts working with a file, the robot opens it (in the background so the user can't notice it) and keeps it open until the robot finishes. This was implemented to speed up the work of the Excel module, for example if there are multiple modules working with a single file, you would have to open and save the file the amount of times it was used, which would slow down the process. Because of that the file opens at the start and saves only one time, at the end. But! Because the file is opened you can't do anything with it – changing the directory of the file, renaming, putting it to an archive, because it's in use. For these kinds of tasks there is a separate module «Close Excel file» - this module closes the specified files. If these files are going to be used again, they will be opened and next time will be closed with this module or in the end of the work of the robot.</p>
|
||||
## Interface of the module
|
||||
<p> Interface of the module consists of one field and the list of paths to the files which you need to close.</p>
|
||||
<H1 align="center"></h1>
|
||||
<p> Поле «Путь к файлу» заполняется путем до файла, который необходимо закрыть. Он может содержаться в переменной, или можно выбрать его вручную, нажав на кнопку с изображением папки, находящуюся в поле для ввода.</p>
|
||||
<p> По кнопке «Добавить» указанный в поле «Путь к файлу» путь будет занесен в «Список файлов». </p>
|
||||
<p> По кнопке «Удалить» можно удалить выбранный путь из «Списка файлов».</p>
|
||||
<p> Field «Path to the file» is filled with the path to the file you need to close. It can be in a variable or you can choose it manually by pressing the button with a folder on it.</p>
|
||||
<p> By clicking the «Add» button the path specified in the «Path to the file» field will be added in the «List of files».</p>
|
||||
<p> By clicking the «Delete» buttons you can delete the path from the «List of files».</p>
|
120
docs/Iterface.md
|
@ -1,87 +1,87 @@
|
|||
# <H1 align="center">Модуль «Интерфейс»</h1>
|
||||
# <H1 align="center">MODULE «INTERFACE»</h1>
|
||||
|
||||
<p> Данный модуль предназначен для создания диалоговых окон для общения с пользователем робота. Это могут быть окна, позволяющие прикрепить файл, ввести какие-либо данные – дату, имена, почтовые адреса и другое, с чем впоследствии будет работать робот, или наоборот, окна, отображающие результат работы.</p>
|
||||
<p> Создание окна заключается в добавлении на него контролов – элементов интерфейса таких, как надписи, текстовые поля, кнопки, выпадающие списки.</p>
|
||||
<p> This robot is designed for creating dialog windows for communicating with the user of the robot. It can be windows that allow you to attach a file, enter any data - date, names, mailing addresses, and other things that the robot will subsequently work with or vice versa windows that display the result of work.</p>
|
||||
<p> To create a window you need to add controls to it - interface elements such as labels, text fields, buttons, drop-down lists.</p>
|
||||
|
||||
## Основное окно
|
||||
<p> Окно модуля состоит из нескольких частей:
|
||||
<p> • Добавить элемент - настройка добавляемого элемента;
|
||||
<p> • Общие настройки – общие настройки диалогового окна;
|
||||
<p> • Список элементов – таблица, в которой содержатся все добавленные элементы;
|
||||
<p> • Окно с предварительным просмотром диалогового окна на текущий момент (правая часть окна).
|
||||
## The main window
|
||||
<p> Module window consists of the following parts:
|
||||
<p> ● Window settings - general settings for the dialog window;
|
||||
<p> ● Interface Item Settings - Configure the item you need to add;
|
||||
<p> ● List of elements - a table that contains all the added elements;
|
||||
<p> ● A window with a preview of the current dialog window (right side of the window).
|
||||
<H1 align="center"></h1>
|
||||
<p> Начинать работу с диалоговым окном следует с общих настроек, а именно с настройки сетки, которую можно открыть по кнопке «Настройка сетки».
|
||||
## Общие настройки
|
||||
<p> К общим настройкам относится название окна – «Титул», его ширина и высота и настройка сетки. При установке флажка «На весь экран» поля «Высота» и «Ширина» не будут учитываться.
|
||||
<p> По нажатию на кнопку «Настройка сетки» появится окно настроек строк и колонок сетки.
|
||||
<p> You should start working with a dialog window from the grid settings, which can be opened using the «Grid settings» button.
|
||||
## Window settings
|
||||
<p> Window settings include the«Title», its width and height, and grid settings. By clicking the «Fullscreen» checkbox fields «Height» and «Width» won't be taken into account.
|
||||
<p> By clicking the «Grid settings» button a window for grid and column settings appears.
|
||||
<H1 align="center"></h1>
|
||||
<p> Сетка – это условная разметка элементов интерфейса, некоторая таблица, в которую будут помещаться контролы. Например, если нужно создать окно, в которое пользователь бы вводил два каких-то параметра – конечную и начальную даты, за которые необходимо скачивать почту, то настроить диалоговое окно для ввода этих дат можно несколькими способами:
|
||||
<p> • Первый способ
|
||||
<p> В две строки, 4 элемента интерфейса – на первой строке подпись и поле для ввода начальной даты, на второй строке подпись и поле для ввода конечной даты
|
||||
<p> A grid is a conditional markup of interface elements, a table in which controls will be placed into. For example if you need to create a window in which the user would enter 2 parameters – the starting and the finishing date, between which you need to download emails, then you can configure dialog windows in several ways.
|
||||
<p> ● First method
|
||||
<p> - in two rows, 4 interface elements - on the first row a signature and a field for entering the start date, on the second row a signature and a field for entering the end date
|
||||
<H1 align="center"></h1>
|
||||
<p> Для такой настройки сетки необходимо задать две колонки – первая, для надписей, вторая для полей ввода, и две строки – первая для начальной даты, вторая - для конечной.
|
||||
<p> • Второй способ
|
||||
<p> В одну строку, 3 элемента интерфейса – подпись, поле для ввода первой даты, поле для ввода второй даты.
|
||||
<p> For this grid setting, you need to specify two columns - the first for inscriptions, the second for input fields, and two rows - the first for the start date, the second for the end.
|
||||
<p> ● Second method
|
||||
<p> - in one row, 3 interface elements – signature, field for entering the first date, field for entering the second date.
|
||||
<H1 align="center"></h1>
|
||||
<p> В таком случае используется три колонки и одна строка.
|
||||
<p> • Третий способ
|
||||
<p> В одну строку, 4 элемента интерфейса – два поля для ввода и подписи к каждому из них.
|
||||
<p> In this case 3 columns and 1 row is used.
|
||||
<p> ● Third method
|
||||
<p> - In one row, 4 interface elements – two input fields and signatures to every one of them.
|
||||
<H1 align="center"></h1>
|
||||
<p> Здесь используются 4 колонки и 1 строка.
|
||||
<p> Для каждой колонки можно задать свою ширину, для каждой строки – высоту:
|
||||
<p> In this case 4 columns and 1 row is used
|
||||
<p> You can specify the width for every column, and the height for every row
|
||||
<H1 align="center"></h1>
|
||||
<p> Высота и ширина вводятся в пикселях, но можно использовать относительные размеры окна, например, если одна колонка должна быть больше другой в два раза и их всего две, то в поле «Ширина» можно ввести «1*» для первой колонки, и «2*» для второй:
|
||||
<p> The height and width are entered in pixels, but you can use the relative dimensions of the window, for example, if one column should be twice as large as the other and there are only two of them, then in the «Ширина» field you can enter «1*» for the first column, and «2*» for the second:
|
||||
<H1 align="center"></h1>
|
||||
<p> Результат такой разметки:
|
||||
<p> The result of this layout:
|
||||
<H1 align="center"></h1>
|
||||
<p> Нумерация строк и колонок начинается с 0. С помощью кнопки «Удалить» можно удалить ненужную строку или колонку, по кнопке «Редактировать» можно изменить высоту или ширину.
|
||||
<p> После настройки сетки она будет отображена пунктирной линией в окне предварительного просмотра в правой части окна, и затем можно приступить к добавлению контролов.
|
||||
## Добавление элемента интерфейса
|
||||
<p> Для добавления на окно нового элемента необходимо заполнить поля, представленные на рисунке:
|
||||
<p> Row and column numbering starts at 0. You can delete the row or column you don't need with a «Delete» button, and you can change the height or the width with the «Edit» button.
|
||||
<p> After adjusting the grid, it will be displayed with a dashed line in the preview window on the right side of the main window, and then you can start adding controls.
|
||||
## Adding an interface element
|
||||
<p> To add a new element you need to fill in the fields demonstrated on the Figure
|
||||
<H1 align="center"></h1>
|
||||
<p> Обязательными полями являются все, кроме полей «Объединить колонки/строки».
|
||||
## Поле «Тип»
|
||||
<p> All fields are necessary except «Merge rows/columns»..
|
||||
## Field «Type»
|
||||
<H1 align="center"></h1>
|
||||
<p> Сначала выбирается тип добавляемого элемента интерфейса из предложенных:
|
||||
<p> • Поле для ввода – поле, в которое можно ввести любую строку;
|
||||
<p> First, the type of the added interface element is selected from the ones proposed:
|
||||
<p> ● Input field - a field into which you can enter any line;
|
||||
<H1 align="center"></h1>
|
||||
<p> • Надпись – статичная строка текста, которая не может быть отредактирована пользователем;
|
||||
<p> ● Caption - a static line of text that cannot be edited by the user;
|
||||
<H1 align="center"></h1>
|
||||
<p> • Выпадающий список – поле со стрелочкой сбоку, по нажатию которого открывается список заранее определенных значений;
|
||||
<p> ● Drop-down list - a field with an arrow on the side, by clicking on it a list of predefined values is going to be opened;
|
||||
<H1 align="center"></h1>
|
||||
<p> • Таблица – отображение в виде таблицы заранее созданной переменной. Возможно редактирование полей таблицы, но невозможно создание новых колонок в ней;
|
||||
<p> ● Table - a table view of a previously created variable. It is possible to edit table fields, but it is impossible to create new columns in it;
|
||||
<H1 align="center"></h1>
|
||||
<p> • Выбор даты – поле с иконкой календаря, по нажатию на которую пользователю будет предложено выбрать определенную дату. Возможен ввод значения даты вручную, при вводе других строк поле автоматически подберет наиболее подходящую дату к введенным данным. Формат даты ДД.ММ.ГГГГ;
|
||||
<p> ● Date selection - a field with a calendar icon, by clicking on which the user will be asked to select a specific date. You can enter the date value manually; when entering other lines, the field will automatically select the most suitable date for the entered data. Date format DD.MM.YYYY;
|
||||
<H1 align="center"></h1>
|
||||
<p> • Выбор файла – поле с иконкой в виде трех точек, по нажатию на которую пользователю будет предложено выбрать файл. Путь до выбранного файла запишется в это поле;
|
||||
<p> ● File selection - a field with an icon in the form of three dots, by clicking on which the user will be asked to select a file. The path to the selected file is written to this field;
|
||||
<H1 align="center"></h1>
|
||||
<p> • Выбор папки – поле с иконкой в виде трех точек, по нажатию на которую пользователю будет предложено выбрать папку. Путь до выбранной папки запишется в это поле. Выглядит так же, как и «Выбор файла».
|
||||
## Поле «Источник данных»
|
||||
<p> В это поле вводится название переменной или строка, на основе которой контрол будет заполнен. Немного поподробнее о поле при выборе различных элементов интерфейса:
|
||||
<p> • Для типа элемента «Надпись» туда вводится значение, которое должно быть отображено в выводимой надписи;
|
||||
<p> • Для «Поле для ввода», «Выбор даты», «Выбор файла» и «Выбор файла» вводится значение, которое сразу будет указано в поле, если это необходимо. Если поле должно быть пустым, то не надо заполнять «Источник данных»;
|
||||
<p> • Для «Таблицы» необходимо подать заполненную табличную переменную для её отображения;
|
||||
<p> • Для элемента интерфейса «Выпадающий список» необходимо передать набор значений, которые пользователю будет предложено выбрать. Делается это через символ «;». Это могут быть строки, переменные-элементы, переменные-списки или табличные переменные, состоящие из одного столбца. Например, введено следующее значение, при приведенных далее примерах заполнения переменных:
|
||||
<p> ● Selecting a folder – пa field with an icon in the form of three dots, by clicking on which the user will be asked to select a folder. The path to the selected folder is written to this field. Looks exactly like «File selection».
|
||||
## Field «Data source»
|
||||
<p> Enter the name of the variable or a string on the basis of which the control will be filled in this field.Немного поподробнее о поле при выборе различных элементов интерфейса:
|
||||
<p> ● For the «Signature» element type a value is entered there, which should be showed in the displayed label;
|
||||
<p> ● For «Input field», «Date selection», «File selection» and «Folder selection» a value is entered that will be immediately indicated in the field, if necessary. If you want the field to be blank, you shouldn't fill «Data source»;
|
||||
<p> ● For «Table» you must submit a completed table variable to display it;
|
||||
<p> ● For the «Drop-down list» interface element it is necessary to transfer a set of values that the user will be offered to select. It is done through the «;» symbol. These can be rows, element variables, list variables, or table variables consisting of a single column. For example, the following value was entered in the following examples of filling in variables:
|
||||
<H1 align="center"></h1>
|
||||
<H1 align="center"></h1>
|
||||
<H1 align="center"></h1>
|
||||
<p> Результат будет выглядеть следующим образом:
|
||||
<p> The result will look like this:
|
||||
<H1 align="center"></h1>
|
||||
## Поля «Колонка» и «Строка»
|
||||
<p> В эти поля необходимо ввести номер колонки и строки сетки (таблицы), в которых должен располагаться добавляемый контрол. Например, в примере с датами (рис. 8.22.2) контрол «Надпись» - «Начальная дата» располагается в 0 колонке и 0 строке, а надпись «Конечная дата» - в 0 колонке и 1 строке.
|
||||
<p> Поля «Объединить колонки» и «Объединить строки»
|
||||
<p> В некоторых случаях необходимо выводить поля не в конкретной клеточке сетки, а в объединении нескольких клеток. Например – нужно предложить пользователю выбрать Excel-файл для записи в него результатов и ввести начальную и конечную дату, по которым будут собираться некоторые данные. Хотелось бы объединить это в две строки, но для ввода даты нужно как минимум 2 поля, а поле для выбора файла – одно.
|
||||
## Fields «Column» and «Row»
|
||||
<p> In these fields, you must enter the column number and grid lines (tables) in which the added control should be located. For example, in the example with dates (Figure 9.25.2), the control «Label» - «Start date» is located in column 0 and row 0, and the signature «End date» - is in column 0 and row 1.
|
||||
## Fields «Merge columns» and «Merge rows»
|
||||
<p> In some cases, it is necessary to display fields not in a specific cell of the grid, but in a combination of cells. For example - you need to prompt the user to select an Excel file to write the results to and enter the start and the end date, according to which data will be collected. It would be nice to merge this in two rows, but to enter the date you need at least 2 fields, and to select a file - one.
|
||||
<H1 align="center"></h1>
|
||||
<p> Для того, чтобы растянуть поле для выбора файла по длине полей для ввода даты, нам необходимо разместить его не просто в 1 колонке и 0 строке, но и объединить для него две колонки, чтобы оно занимало сразу обе:
|
||||
<p> In order to stretch the field for selecting a file along the length of the fields for entering the date, we need to place it not just in 1 column and 0 row, but also merge two columns for it so that it occupies both at once:
|
||||
<H1 align="center"></h1>
|
||||
<H1 align="center"></h1>
|
||||
<p> То есть при заполнении поля «Объединить колонки» колонки, начиная с той, что указана в поле «Колонка», будут объединены по горизонтали в одну.
|
||||
<p> Аналогично с полем «Объединять строки» - указанное количество строк, начиная с той, что указана в поле «Строка», будут объединены в одну:
|
||||
<p> When filling out the «Merge columns» field, columns starting from the one indicated in the «Column» field, will be merged into one horizontally.
|
||||
<p> SImilar with the «Merge rows» field - specified amount of rows starting with the one that is specified in the «Row» field, will be merged into one:
|
||||
<H1 align="center"></h1>
|
||||
## Поле «Переменная»
|
||||
<p> В это поле вводится название переменной, в которую будет записано значение, введенное (для выпадающего списка – выбранное) пользователем. Является обязательным полем для всех типов контролов, кроме «Надписи».
|
||||
<p> После заполнения всех полей необходимо нажать на кнопку «Добавить». После нажатия на нее элемент сразу отобразиться в окне предпросмотра в правой части окна.
|
||||
## Field «Variable»
|
||||
<p> The name of the variable is entered into this field, into which the value entered (for the drop-down list - selected) by the user is written. It is a required field for all types of controls, except for the «Label».
|
||||
<p> After filling out all required fields press the «Add» button. After clicking on it, the element will immediately appear in the preview window on the right side of the window.
|
||||
<H1 align="center"></h1>
|
||||
<p> По кнопке «Предпросмотр» откроется диалоговое окно в таком виде, в котором оно будет представлено пользователю.
|
||||
<p> Удалить или отредактировать элемент можно, предварительно выбрав его в области «Список элементов», а затем нажав на соответствующую кнопку, находящуюся над списком с элементами.
|
||||
<p> После добавления всех необходимых контролов нужно нажать кнопку «Сохранить» в правой нижней части окна.
|
||||
<p> By clicking the «Preview» button a dialog window will be opened in the form in which it will be presented to the user.
|
||||
<p> You can delete or edit an element by first selecting it in the «List of items» area, and then clicking on the corresponding button located above the list with items.
|
||||
<p> After adding all the necessary controls, click the «Save» button in the lower right part of the window.
|
||||
|
|
|
@ -0,0 +1,35 @@
|
|||
# <H1 align="center">ORCHESTRATOR</h1>
|
||||
|
||||
## General information
|
||||
<p> Robot Orchestrator - a service for launching robots according to a schedule and / or some events. Access to the orchestrator is carried out by pressing a  button in the control panel of the main studio window. After clicking on the button, a window will open allowing you to publish a new robot and / or adjust the launch schedule of already published robots.</p>
|
||||
<H1 align="center"></h1>
|
||||
<p> Orchestrator consists of three parts and a button for publishing the current robot.
|
||||
<p> Parts of the orchestrator:
|
||||
<p> ● Tasks - the part that allows you to create a new task;
|
||||
<p> ● Robots - the list of all published robots by the user;
|
||||
<p> ● List of tasks - the list of all tasks published by the user.
|
||||
<p> The «Publish current robot» adds an already active robot to the list of published robots.
|
||||
<p> After creating all tasks you just need to close the orchestrator window.
|
||||
<p> For the orchestrator to work you need to install the Lexema-RPA Client software that scans all created tasks and launches them according to the schedule in the background. To download it you need to visit this - <a href="http://lexema.ru/solutions/lexema-rpa-programmnye-roboty/lexema-rpa-studio/"> website </a> and select «Download Lexema-RPA Client». User manual for the software is also there.
|
||||
## Creating a new task
|
||||
<p> To create a schedule for the robot execution you need to create a task. To configure a task you need to fill in 5 fields – this is the name of the task, choosing a robot from already published, launch time of the robot, amount of retries and launch interval.
|
||||
<H1 align="center"></h1>
|
||||
<p> Task name. The name of the task to run a specific robot, an identifier by which it will be more convenient to navigate among all your tasks.
|
||||
<p> Robot. Choosing a robot to which the task is gonna be applied to. The field is a drop down list with all your published robots
|
||||
<H1 align="center"></h1>
|
||||
<p> First launch. The time of the first launch of the robot after which it's going to be launched with an interval. The date and time is chosen.
|
||||
<p> Retries. Total number of robot retries. If you don't need to launch the robot more than one time you should put 0 in this field. If you need to launch the robot twice a day throughout the week then the amount of retries equals 2*7-1 = 13.
|
||||
<p> Launch time. Time after which the robot needs to be restarted (if there are retries (restarts). To configure this field press the arrow button on the right.
|
||||
<H1 align="center"></h1>
|
||||
<p> By clicking on it, an auxiliary window for selecting the interval will open.
|
||||
<H1 align="center"></h1>
|
||||
<p> If you need the robot to run on the 25th of every month, you need to set the closest 25th of the month, and in the interval settings set interval to «1» in the «Month» line, then the robot will restart every month.
|
||||
<p> The same interval is set between every restart (retry). If you need to run the robot with different intervals, then you need to create multiple tasks of robots execution, for example if you need to run the robot at 10:00 am and at 1:00 pm of the same day throughout the week, then you need to create two tasks, amount of retries of which equals 6 (every day not counting the day of the first start (run), interval of launch – 24 hours or 1 day, the only difference between these tasks is the time of launch – first one at 10:00 am, and the second one – at 13:00.
|
||||
<p> After filling in all fields in the interval window and pressing the «Save» button, in the «Interval» field a line like this will show up «year:month:day:hour:minutes:seconds», for example if you set the interval for 12 hours it will look like this: «0:0:0:12:0:0». The «Interval» field is a necessary field, if the amount of restarts differs from one.
|
||||
<p> An example of a completed task:
|
||||
<H1 align="center"></h1>
|
||||
<p> By clicking the «Add» button, that is located below the fields for configuring tasks, the task is gonna be added to the task list.
|
||||
<H1 align="center"></h1>
|
||||
<p> To edit an existing task you need to find it in the list and click on it (1). Then the fields for configuring the task will fill in with the appropriate fields. Then, after editing the fields (2), you need to press the «Edit» button and the changes will be saved (3).
|
||||
<H1 align="center"></h1>
|
||||
<p> To delete a task you need to find it from the list and then press the «Delete» button.
|
|
@ -0,0 +1,10 @@
|
|||
# <H1 align="center">Section - «Robots»</h1>
|
||||
|
||||
##
|
||||
<p> This section consists of a search field by robots name and a list of published robots. When publishing, the robot is assigned a unique identifier, so the names of robots can be repeated.</p>
|
||||
<H1 align="center"></h1>
|
||||
<p> To load, debug or edit an existing robot, you must open it as a project in the studio. To do this, click on the Lexema-RPA icon of the corresponding robot.
|
||||
<H1 align="center"></h1>
|
||||
<p> After editing the robot click the «Publish current robot» button, after which the changes will be saved.
|
||||
<p> To delete the robot you need to click on the red cross in its box.
|
||||
<H1 align="center"></h1>
|
|
@ -0,0 +1,15 @@
|
|||
# <H1 align="center">Module «Try/Catch»</h1>
|
||||
|
||||
<p> This module allows you to handle errors that may occur during the execution of modules.</p>
|
||||
|
||||
##
|
||||
<H1 align="center"></h1>
|
||||
<p> Module consists of two blocks – TRY and CATCH. Block TRY contains a set of modules or the whole robot execution of which is needed, CATCH block contains a set of modules in case an error occurs in the execution of the modules of the TRY block.
|
||||
<p> The module has two text fields, the first is the “Note” field, into which you can enter a description of the module for more convenient navigation around the robot, and the second field is designed to save errors that occurred in the TRY module. Since it is possible to find out what error occurred, each possible error can be correctly processed in the CATCH block.
|
||||
## EXAMPLE.
|
||||
<p> The task is to download a letter from the mail with a specific name of an attachment to a predetermined folder and process this attachment with the Excel module, and in the Excel module the path to the file will always be the same. For example the attachment is called «Daily report», path to the folder «C:\Reports», then this file will always be opened «C:\Reports\Report for the fay.xlsx», and attachments from the inbox will always be downloaded to the folder above.
|
||||
<p> If the email with the necessary attachment has not arrived yet, then the Excel module will generate an error “Could not open document C:\Reports\Report for the day.xlsx”.In this case, you need to somehow handle this error, prompt the user to start the robot later, or tell him to wait and try again.
|
||||
<p> To process the error with displaying the information window, you must add the «Try/Catch», where the TRY block will contain the email and Excel scanning modules, and the CATCH block the module Interface for displaying the user window.
|
||||
<H1 align="center"></h1>
|
||||
<p> In result you will get this default message «The script worked successfully!» if the email was in inbox or with the «The email hasn't arrived yet» message if the email isn't there yet. The @error variable will contain the text «Could not open document C:\Reports\daily report for the day.xlsx».
|
||||
<H1 align="center"></h1>
|
46
docs/Word.md
|
@ -0,0 +1,46 @@
|
|||
# <H1 align="center">МODULE «WORD» </h1>
|
||||
|
||||
<p> Module Work can work with Microsoft Word documents. With this module you can create and edit documents with popular extensions as .doc, .docx, .html.</p>
|
||||
|
||||
## Window interface
|
||||
<p> The module window consists of three main parts, the first is the part containing the fields for creating commands and their control buttons, the second one is the table «List of commands», which will contain all added actions for working with the file, and the first part is the part where you can see the preview of the file. </p>
|
||||
<H1 align="center"></h1>
|
||||
<p> The preview window allows you to view the entire loaded document in the same form as it is visible in Microsoft Word itself
|
||||
<p> The settings section consists of multiple fields the availability of which varies from the actions necessary for the operation. First three fields are most important and are always available but only two of them are necessary:
|
||||
<p> • «Path to the file» - a field with a button that opens a dialog of choosing a file. This field is designed for choosing an existing file with which you will be working with, or for entering a directory to which a new file is going to be added to. This field is necessary;
|
||||
<p> • «Action» - a drop down list with actions that you can apply to the loaded file or create a new one by specifying the directory in the «Path to the file» field. This field is also necessary;
|
||||
<H1 align="center"></h1>
|
||||
<p> • ● «Description» - This field is designed for convenient navigation through actions, this field should be filled with a note from the developer about the action itself. This field is not necessary.
|
||||
<p> All possible actions will be described in the next chapter.
|
||||
<p> To add an action into the «List of commands» table you need to use the «Add» button under the settings section.
|
||||
<H1 align="center"></h1>
|
||||
<p> After pressing the button the created action will be added to the «List of commands». To edit or delete an existing command you must select the line with the command in the command table and click «Delete» to delete or «Edit» to edit.
|
||||
<p> To change the order of actions, you need to select the action and then click «Raise» or «Lower» buttons, that are located in the right corner above the table.
|
||||
<H1 align="center"></h1>
|
||||
## Module actions
|
||||
### Create file
|
||||
<p> This action creates a file with the specified directory, name, and extension. To configure this action you need to fill the «Path to the file» field with the line of the following type «Path to the file/name of the file.extension», for example «C:/Reports/Documents/Test.docx».
|
||||
<H1 align="center"></h1>
|
||||
### Get text
|
||||
<p> The «Get text» action allows you to scan all text from the loaded file to the variable. For configuring the action one more field appears besides the standard three – «Variable», in which the name of the variable is put (starting with the «@» symbol), in which the scanned text is going to be put in.
|
||||
<H1 align="center"></h1>
|
||||
### Write text
|
||||
<p> Using an action, you can write existing text, for example, read from another text file, into the currently loaded file. For configuration it is necessary to fill out the «Value» field, where either a variable (starting with the "@" symbol) containing text or the text itself is entered.Please keep in mind that the text entered by this action will completely erase the existing text in the file.
|
||||
<H1 align="center"></h1>
|
||||
### Add text
|
||||
<p> This action allows you to add text to the existing one using the necessary formatting.. All fields of the modules are open for editing. Every field is going to be described below.
|
||||
<p> «After the № symbol» - this field expects the input of an integer indicating after which character the text should be inserted (considering the space and the line break or page break characters).
|
||||
<H1 align="center"></h1>
|
||||
<p> «Text size» - similar to the «Font size» in Microsoft Word – sets the size of the added text. You should enter an integer or a decimal number.
|
||||
<p> «Font» - a drop down list that includes all default fonts from Microsoft Word – sets the font of the added text.
|
||||
<p> «Font color» and «Background color» – fields with a palette icon on the side, by clicking on which a color selection dialog window opens up - sets the color of the added text and its background. It is entered in the HEX color format - the hexadecimal representation of RGB (without the # symbol at the beginning).
|
||||
<p> «Теxt» - here you should put the text you want to add.
|
||||
### Add line break
|
||||
<p> This action adds a line break character to the file. You don't need to fill in additional fields.
|
||||
<H1 align="center"></h1>
|
||||
### Delete text
|
||||
<p> With this action you can delete text if you know the amount of characters and its location. For configuration you need to enter 2 integer numbers separated by a comma into the «After symbol №., quantity» field where the first number is a number of a character after which you need to delete text, and the second number is the amount of characters you need to delete.
|
||||
<H1 align="center"></h1>
|
||||
### Export
|
||||
<p> You can change the extension of the file using this action. To configure the action, you need to select the type of file to export from the "Type" drop-down list and specify the path with the name and extension of the file in the “Output file path” field.
|
||||
<H1 align="center"></h1>
|
After Width: | Height: | Size: 374 B |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 8.7 KiB |
After Width: | Height: | Size: 5.1 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 9.2 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 55 KiB |
After Width: | Height: | Size: 8.8 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 9.7 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 8.0 KiB |
After Width: | Height: | Size: 659 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 8.6 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 588 B |
After Width: | Height: | Size: 5.2 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 21 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 64 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 9.8 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 9.6 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 8.1 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 21 KiB |
|
@ -31,6 +31,10 @@ nav:
|
|||
- 'Pause': 'Pause.md'
|
||||
- 'Robot': 'Robot.md'
|
||||
- 'Return': 'Return.md'
|
||||
- 'Word': 'Word.md'
|
||||
- 'Proxy': 'Proxy.md'
|
||||
- 'Try/Catch': 'TryCatch.md'
|
||||
- 'Orkestrator': 'Orkestrator.md'
|
||||
|
||||
|
||||
- About: about.md
|
||||
|
|