(Resolved) CRM Explorer not showing up on Visual Studio

s1
If you cannot find CRM Explorer in the Tools menu, you can fix the issue like that.

  • Close the Visual Studio Project
  • Open the Project’s Solution file (.sln) in a text edior
  • Find the Global section and insert the following code at the beginning of the section.

  • Save the file and open your project again.
  • Now you can find the CRM Explorer in the Tools Menu or Connect to Dynamics CRM Server dialog will show up automatically.

Read More

Top 7 CRM Blogs for CRM Developer to Follow

crmkitchen-topHere are the most efficient Dynamics CRM blogs about development you can find functional and technical posts in there. It is in no particular order, and it makes no claims to being entirely exhaustive. If you think we’ve missed an amazing blog, please let us know in the comments!

Check out the Top Dynamics CRM Developer’s Blogs :

Ben Hosking’s Dynamics CRM Blog

https://crmbusiness.wordpress.com/

 

CRM Tip Of The Day

http://crmtipoftheday.com/

 

On Technology with Mitch Milam

http://www.infinite-x.net/

 

Rajeev Pentyala’s Dynamics CRM Blog

https://rajeevpentyala.wordpress.com/

 

Barış Kanlıca’s Dynamics CRM Blog

http://www.cub-e.net/ (Also available Turkish Posts)

 

HIMMAP’s Dynamics CRM Blog

https://mahenderpal.wordpress.com

 

CRM Course’s Dynamics CRM Blog

http://crmdersleri.com/en/ (Also available Turkish Posts)

 

If you want to recommend a Dynamics CRM Blog, please leave a comment below.

Check out our other Top Dynamic lists here:

Read More

CRM Tips : Convert Text to Uppercase on Key Down event for CRM 2013 and 2015

You can find lots of post for CRM 2011 keypress on the Internet. But those methods cannot work on CRM 2013 and  2015 so you can use this method.

 

If you are using different language for CRM. You can customize special character’s char code to if statement. For example :

Read More

CRM 2011 Javascript Basics

Why we use Javascript in CRM ?

  • Data Manipulation on the forms
  • Automation and usability for users
  • Custom Validations on the forms about processes
  • Process Enhancement and Enforcement
  • To Create, Update and Retrieve record on the Client Side using OData

Get the value from field

Set the value of a field

Set the value of a disabled field (Read-Only)

Set the Requirement level

Get Form Type

Set the value of a lookup field

Hide / Show a field

Hide / Show a Tab

Save the form & Save and Close the from

Determine whick fields on the form are dirty

Get ID / Guid of the current record

Get ID / Guid of the current user

Get the Security Roles of the current user

Get the CRM Server URL

Refresh a SubGrid

Change the default entity in the lookup window 

Popup an existing CRM Record

Popup a new CRM form ( blank form)

Popup a new CRM form with default values

Popup / Trigger the lookup window associated to a lookup field

Popup an OK / Cancel Dialog ( Alert )

Refresh the Ribbon

Disable the all fields in the form

Expand / Collapse a Tab

Get all Required Fields in CRM form

Set / Change Label of field in CRM form

Reload / Refresh a form in CRM

Convert to Upper String Value

Change CRM Field CSS Style (font, color etc.)

Set as Read Only

Read More