Creative

How to use Function type in TypeScript?

In this we can define that functions in Typescript  . Defining a Function : A function definition specifies what and how a specific task would be done. Before using a function, it must be defined. Functions are defined using the function keyword. Syntax :  function function_name() {// fu...

Creative

How to Create, design and edit forms in Dynamics 365

 Dynamics 365 Customer Engagement (on-premises), forms provide the user interface that people use to interact with the data they need to do their work. In the default solution or an unmanaged solution, you can create new forms or edit existing forms for all entities that allow form custom...

Creative

How to create Entity Forms in Dynamics 365?

Entity Forms in Dynamics 365 are used to show and hide the controls on a form and hiding or showing columns in a view. In Microsoft Dynamics 365, we can create 4 type of forms they are : Main form, Quick view form, Quick create form and Card form. To create entity forms in Dynamics [&helli...

Creative

How to create pdf from email using Power Automate

We’ll learn how to convert an email to a PDF in this blog post. An email sent by a user, for example, will be converted into a PDF and uploaded to the selected document library. The actions are as follows: Click +Create > Automated cloud flow.  choose the trigger “When a ne...

Creative

How to Build a Type_Safe Dictionary in TypeScript ?

 In this Blog we will learn about how to Build a type_safe Dictionary using TypeScript. Dictionary in TypeScript: A dictionary is a type of data structure that is commonly used in programming languages. It is critical for JavaScript developers to work with type-safe dictionaries because s...

Creative

What is an Array & its Methods in Typescript ?

In this Blog  we will learn what is an array in TypeScript , features of TypeScript . Array :  An array is a unique kind of data type that uses a particular syntax to sequentially store many values of various data kinds. Arrays in type script: TypeScript supports the following co...

Creative

How to convert string to date in power automate

We will now learn about how to use Power Automate to turn a string into a date. In Power Automate, we’ll begin by manually triggering the flow. This can be added using Instant Cloud Flow. Next, we’ll add a variable to serve as the initializer. Here, a date will be entered as a ...

Creative

How to create an Object in Typescript ?

in this Blog we see how to Create an Object in TypeScript & Assign Properties to the Objects. Object in TypeScript: An object is an instance which contains set of key value pairs. The values can be scalar values or functions or even array of other objects. Syntax: var object_name = { ...

Creative

Using annotations & its types in TypeScript

In this blog, we’ll see a how to assign type annotations to  types to variables and functions of Typescript Type annotation in typescript? Type annotations are used in TypeScript to clearly indicate the types of identifiers such as variables, functions, objects, and so on. Assign...