When you are not able to see Azure Functions Type in Cloud Template in Visual Studio 2015
- Uninstall your current Azure SDK version.
- Install 2.9.6 Azure SDK version for VS 2015 from below link:
Download
Please comment for more info.....
using System;
using System.Collections.Generic;
namespace ConsoleApplication4
{
interface IMovable
{
void Move();
}
class Human : IMovable
{
public void Move() // Add code that defined what it called Human to move
{
Console.WriteLine("I am a Human, I move by Walking");
}
}
class Fish : IMovable
{
public void Move() // Add code that defined what it called Fish to move
{
Console.WriteLine("I am a Fish, I move by swimming");
}
}
class Car : IMovable
{
public void Move() // Add code that defined what it called Car to move
{
Console.WriteLine("I am Car, I move By wheel");
}
}
class Program
{
static void Main(string[] args)
{
//User of Interface : Make a group of object by the fact they all move
//Grouping by the behaviour not by the class hierarchy
/*
We are clearly able to group by the fact that they share common behaviour
Benefit here:
You need only single list to hold movable object, not 10 list of each type of object
*/
List<IMovable> lstMovable = new List<IMovable>
{
new Human(), // Polymorphism in action [Different Form]: We are adding the Human object to the list designed of movable object
new Fish(), // Polymorphism in action [Different Form]: We are adding the Fish object to the list designed of movable object
new Car() // Polymorphism in action [Different Form]: We are adding the Car object to the list designed of movable object
};
foreach(IMovable movableType in lstMovable)
{
movableType.Move();
// When movable type is Human, the method from the Human class is invoked
// When movable type is Fish, the method from the Fish class is invoked
// When movable type is Car, the method from the Car class is invoked
}
Console.ReadLine();
}
}
Note: Why we can’t use Abstract Class here
- Class like Fish, Human or Car – all of these objects can move but all are having different way to move or different definitions
(T) Debug Account onLoad
script for tablet/Mobile.
Note:
Create script file from web resource
============ new_account.js =================
function OnLoadOfAccount() {
debugger;
alert("OnLoad called");
}
=====Add function(OnLoadOfAccount) on Form load of Account entity ============
|
Step 1) Generate URL
Ex.
Note:
To get the OrgName, go to CRM
> Settings > Customization > Click on “Developer Resources ”option and find the Unique Name
Step 2) Hit the generated URL on browser and download
the XML
Comment if you require more info....... |
Import Ribbon Workbench in your CRM instance.Pre-requisites
a) Go to the below link to download it.https://ribbonworkbench.uservoice.com/knowledgebase/articles/80806-download-ribbon-workbench-for-crm-2011-2013-2015.Steps to hide "+" icon of Contact sub grid from Account entity only.
Step 1) Create “Enable Rule” and add “Entity Rule” as step in Contact entity.
Note:Step 2: Find Command names of “Add New{0}” and “Add Existing{0}” buttons.
For hiding the + icon from contact subgird, we need to add enable rule for “Add New” and “Add Existing” buttons.
Step 4: Publish the solution.Output:
Comment if you require more info.......
Go to Office 365 Admin Center Go to https://portal.office.com/ Click on Admin Install Dynamics Portal for your CRM instance Clic...