-
What’s New On Microsoft Dynamics NAV 2018
API Integration in NAV 2018 As most of us know that Microsoft NAV 2018 has released a great feature about API in 2018, to support this feature we have new page type called as ‘API’. You will find four new properties in API Page I.e. Page type, Entity Name, Entity Set Name, ODataKeyFields. For…
-
Initializing Core Data In Swift 4 For Mobile App Development
Why Core Data? There are multiple ways to store data in your iOS app but one of the best way is to use core data . also allows you to store your data within app bundle and your data to be retained on app launches. What’s Core Data? According to Apple ,Mobile App Development for Core Data…
-
Microsoft Dynamics NAV 2018 User Task
Introduction: User Tasks is a one of the new feature added in Microsoft Dynamics NAV 2018. In this you can create the tasks for yourself and assign tasks to others or be assigned a task by someone else in your Company and you can set an expiration date, create a recursive task. User Task Functionality:…
-
Migrating Work Items from 1 Team Project to another Team Project in VSTS
Hi ya’ll, in this post I am gonna show you how to migrate work items from 1 Team Project (TP) to another TP in VSTS using the vsts work item migrator tool. WiMigrator is a command line tool designed to Migrate work items from one VSTS/TFS project to another. In order to do so, below…
-
Animation with Xamarin Forms
In this Article I am going to show you how we can add animation in our Xamarin Forms Application. It is very simple process to add animation with xamarin forms app. We are not going to use any 3rd party plugin for that. Because this property available with default project. Just we need to use…
-
Unit Test in C# (Xamarin Forms)
Unit Test are important for a good quality and maintainable code. It help to find error in our code in a very easy manner. For maintenance a software code it is a good practice to write a Unit test in your project. Unit text is performed by the developer and not by the end-user. There…
-
Azure Function : A quick start with database
Azure Function is a solution for running small piece of code or a "Function" in cloud. You can write just the code need for the problem without worrying about the infrastructure or the application to run it. Function can make your development more productive and you can choose your development language of choice such as…
-
NAV – Connecting Microsoft Dynamics CRM customized entities
Reason: NAV and CRM can be integrated using inbuilt standard features. However, there are certain scenarios where CRM have new / customized fields. These data if required in NAV, then you’re at the right blog to see ‘How-To-Do’ this. Who can do it? Knowledge of NAV Development Knowledge of NAV Table objects Basic knowledge of…
-
Xamarin Forms- Dependency Service (Text To Speech)
It is beautiful and simple to implement. We can use this feature in our App where we want to add voice with text. Prerequisite :- Xamarin Forms project with PCL Approach. (STEP 1) Create a Interface class in PCL. Right click on PCL project ->Add New-> EmptyInterface Create this Interface class with the name of…
-
Swift Closures
A closure is a kind of anonymous(no name) function that gets stored as a variable so it can be called later on, and has the special ability to remember the state of your program when you used it.Closures are typically enclosed in curly braces { } and are defined by a function type () ->…