This function adds a specific number of months (for example, 5) to a timeline with the dd/mm/yy or dd/mm/yyyy formats. For instance, assume you want to add 5 months to the 05/03/24 (5 March, 2024) date. After you use the ADDMONTHS() function to add 5 months to the 05/03/24 date, it performs the addition and then returns the 05/08/24 (5 August, 2024) date. You can use the ADDMONTHS… Continue reading Add Months
Category: vDesigner
Add Days
This function adds a specific number of days (for example, 11) to a timeline with the dd/mm/yy or dd/mm/yyyy formats. For instance, assume you want to add 11 days to the 05/06/24 (5 June, 2024) date. After you use the ADDDAYS() function to add 11 days to the 05/06/24 date, it performs the addition and… Continue reading Add Days
Add Seconds
This function adds a value in seconds to a specific time. For instance, assume you add 25 seconds to the 2:10:12 time by using the ADDSECONDS() function. When the ADDSECONDS() function is executed, it will return 2:10:37 as the value of time after it adds 25 seconds to the 2 hours, 10 minutes, and 12 seconds. You can use the ADDSECONDS() function as follows: To use the ADDSECONDS… Continue reading Add Seconds
Add Minutes
This function adds a value in minutes to a specific time. For instance, assume you add 30 minutes to the 2:10:34 time by using the ADDMINUTES() function. When the ADDMINUTES() function is executed, it will return 2:40:34 as the value of time after it adds 30 minutes to the 2 hours, 10 minutes, and 34 seconds. You can use the ADDMINUTES() function as follows: To use the ADDMINUTES function:… Continue reading Add Minutes
Add Hours
This function adds a value in hours to a specific time. For instance, assume you add 10 hours to the 2:10:34 time by using the ADDHOURS() function. When the ADDHOURS() function is executed, it will return 12:10:34 as the value of time after it adds 10 hours to the 2 hours, 10 minutes, and 34… Continue reading Add Hours
Creating a New Build (vFlow)
Creating a new build of the application designed in the vFlow module requires fewer steps as compared to creating a build of the application designed in vDesigner. You are always recommended to create the build of an application after you configure the build-related properties. Throughout the complete application development life cycle, the Downloads module enables… Continue reading Creating a New Build (vFlow)
Creating a New Build (vDesigner)
When you plan to create a build of the application, you are always recommended to configure application build-related properties. Before you create a build, you must configure Android, middleware, and security-related properties. This planned approach helps you create an application build based on application’s usage. Note:- To know more about build-related properties, click here. The… Continue reading Creating a New Build (vDesigner)
Setting Build Properties for Application in vDesigner
Before you create a build for the application designed in vDesigner, you need to configure several properties at the following levels: To configure the build settings: Android Settings Android Settings Description Upload Icon () Click the plus icon to select the icon of the application from the local drive. Upload a Splash Icon Click Browse… Continue reading Setting Build Properties for Application in vDesigner
Enumeration
An enumeration is a programming concept. In the Data Modeler module, an enumeration can be treated as an object or data type. The enumeration type is also abbreviated as enum. In the enum object, you need to define the following: In the enum object, the key represents the name of the enum member, while the… Continue reading Enumeration
Entity
Introduction In the Data Modeler module, an entity contains the data in a structured format. When a user performs the function on the application, the application fetches the data from the entity and then displays it to the user. An entity contains the data in one of the following structured formats: Note:- In the Data… Continue reading Entity