Home
»
Microsoft Dynamics CRM
»
Jamie Miley - Life and Technology
»
All Tags
»
VB.NET
Browse by Tags
CRM
CRM 2011
jscript
Microsoft Dynamics CRM
Off-Topic
SDK
SOAP
Related Posts
Blog Post:
VB.NET Soap Logger for Microsoft Dynamics CRM Updated For OSDP / Office 365 Environments
Jamie Miley
I have updated my CRM 2011 VB.NET Soap Formatter tool. It now works with Office 365 / OSDP orgs. Please check it out. It's based very heavily on the C# version included in the SDK. It basically allows you to write VB.NET code to the organization service and log the soap for the request and response...
on
4 Oct 2012
Blog Post:
Determine if an Entity is Eligible to Participate in a Relationship Type Using VB.NET in Microsoft Dynamics CRM 2011
Jamie Miley
This illustration shows how to programmatically determine if an entity is eligible to participate in a relationship typ in Microsoft Dynamics CRM 2011 in code using VB.NET. There are three different SDK web service messages highlighted in this post. They are: GetValidManyToManyRequest : Get...
on
18 Sep 2012
Blog Post:
Query a User's Schedule for Open Time Slots Using VB.NET in Microsoft Dynamics CRM 2011
Jamie Miley
This illustration shows how to query a user's schedule for open time blocks using VB.NET in Microsoft Dynamics CRM 2011 with QueryScheduleRequest. Ok, here is what the code looks like! In VB.NET Dim reqWAI As New WhoAmIRequest() Dim respWAI As WhoAmIResponse...
on
22 Aug 2012
Blog Post:
Export a Data Import Map in Microsoft Dynamics CRM 2011 Using VB.NET
Jamie Miley
This illustration shows how to export a data import map in Microsoft Dynamics CRM 2011 in code using VB.NET. This example will be given in SOAP (JScript) and in C# (.NET). Ok, here is what the code look like! In VB.NET: Dim req As New ExportMappingsImportMapRequest...
on
14 Jun 2012
Blog Post:
Install Sample Data In a Microsoft Dynamics CRM 2011 Organization Using VB.NET
Jamie Miley
This illustration shows how to install the sample data that comes with Microsoft Dynamics CRM 2011 with InstallSampleDataRequest. This example will be given in VB.NET. Ok, here is what the code looks like! In VB.NET#: Dim req As New InstallSampleDataRequest()...
on
18 May 2012
Blog Post:
Retrieve Metadata for a Relationship in Microsoft Dynamics CRM 2011 Using VB.NET
Jamie Miley
This illustration shows how to retrieve metadata for a relationship in Microsoft Dynamics CRM 2011 in code using VB.NET. This example will be given in SOAP (JScript) and in C# (.NET). Ok, here is what the code look like! In VB.NET: Dim req As New RetrieveRelationshipRequest...
on
17 May 2012
Blog Post:
Retrieve Option Set Metadata in Microsoft Dynamics CRM 2011 Using VB.NET
Jamie Miley
This illustration shows how to retrieve an option set in Microsoft Dynamics CRM 2011 using the RetrieveOptionSetRequest. This example will be given in VB.NET. Ok, here is what the code look like! First in C#: Dim req As New RetrieveOptionSetRequest()...
on
16 May 2012
Blog Post:
Retrieve Metadata For All Entities in a Dynamics CRM 2011 Organization Using VB.NET
Jamie Miley
This illustration shows you how to retrieve metadata for all entities in an organization using VB.NET with the RetrieveAllEntities message against the CRM 2011 organization service. IMPORTANT NOTE : This call didn't work very well for me as it returns A LOT of data and I couldn't even get...
on
10 May 2012
Blog Post:
Delete an Option Set in Microsoft Dynamics CRM 2011 Using VB.NET
Jamie Miley
This illustration shows how to delete an option set in Microsoft Dynamics CRM 2011 in code with VB.NET using the DeleteOptionSet Request. Ok, here is what the code look like! In VB.NET#: Dim req As New DeleteOptionSetRequest() req.Name = "new_optionsettest"...
on
9 May 2012
Blog Post:
Create an Option Set in Microsoft Dynamics CRM 2011 Using VB.NET
Jamie Miley
This illustration shows how to create an option set in Microsoft Dynamics CRM 2011 using VB.NET with the CreateOptionSet Request. This example will be given in VB.NET. Ok, here is what the code look like! In VB.NET: Dim req As New CreateOptionSetRequest...
on
7 May 2012
Blog Post:
Disassociate Two Entity Instances in Microsoft Dynamics CRM 2011 Using VB.NET
Jamie Miley
Dissassociate requests are kind of like the "unfriend" in Facebook, you are breaking off a relationship that is defined within CRM between two entities. This illustration shows you how to Disassociate two entities in Microsoft Dynamics CRM 2011 using the disassociate request against a...
on
4 May 2012
Blog Post:
Associate Two Entity Instances in Microsoft Dynamics CRM 2011 Using VB.NET
Jamie Miley
This illustration shows you how to associate two entities in Microsoft Dynamics CRM 2011 using the associate request against a known relationship. This example will be given in VB.NET (.NET) with the Associate message against the CRM 2011 organization service. In this example we are simply associating...
on
3 May 2012
Blog Post:
Close an Opportunity Record as Won In Microsoft Dynamics CRM 2011 Using VB.NET
Jamie Miley
This illustration shows how to close an opportunity record as won in Microsoft Dynamics CRM 2011 in code in VB.NET using WinOpportunityRequest. Ok, here is what the code look like! In VB.NET: Dim req As New WinOpportunityRequest() Dim opClose As New OpportunityClose...
on
2 May 2012
Blog Post:
How To Create a One-To Many Relationship Between Two Entities in Microsoft Dynamics CRM 2011 Using VB.NET
Jamie Miley
This illustration shows how to create a one-to-many relationship between two entities in Microsoft Dynamics CRM 2011 in code in VB.NET using the CreateOneToManyRequest. Ok, here is what the code look like! In VB.NET: Dim req As New CreateOneToManyRequest() req...
on
24 Apr 2012
Blog Post:
Delete a Relationship Between Entity Types in Microsoft Dynamics CRM 2011 Using VB.NET
Jamie Miley
This illustration shows how to delete an existing relationship between two entities in Microsoft Dynamics CRM 2011 in code in VB.NET using the DeleteRelationshipRequest. Ok, here is what the code look like! In VB.NET: Dim req As New DeleteRelationshipRequest() req.Name = "new_contact_account"...
on
23 Apr 2012
Blog Post:
Retrieve Used Resources for an Organization and Storage Quota Info in Microsoft Dynamics CRM 2011 Using VB.NET
Jamie Miley
This illustration shows how to retrieve used resources for an organization like number of custom entities and storage quota information in Microsoft Dynamics CRM 2011 with RetrieveOrganizationResourcesRequest. This example will be given in VB.NET Ok, here is what the code looks like! In VB.NET...
on
19 Apr 2012
Blog Post:
Assign an Entity to a User in Microsoft Dynamics CRM 2011 Using VB.NET
Jamie Miley
This illustration shows you how to assign an entity to a user using VB.NET with the Assign Request message against the CRM 2011 organization service. VB.NET: Dim req As New AssignRequest() 'entity you want to assign 'used string for entity logical name to show that this would work for...
on
15 Apr 2012
Blog Post:
Retrieve Metadata for an Entity in Microsoft Dynamics CRM 2011 Using VB.NET
Jamie Miley
This illustration shows you how to retrieve metadata for an entity using VB.NET with the RetrieveEntityRequest message against the CRM 2011 organization service. First in C#: Dim req As New RetrieveEntityRequest req.EntityFilters = EntityFilters.All req.LogicalName = "account" Dim...
on
3 Apr 2012
Blog Post:
Create a New Entity in Microsoft Dynamics CRM 2011 Using VB.NET
Jamie Miley
This illustration will show you how to create a new entity in Microsoft Dynamics CRM 2011 using VB.NET to invoke CreateEntityRequest. Ok, here is what the code looks like once your service is instantiated! In VB.NET Dim attribute As New StringAttributeMetadata attribute.SchemaName...
on
1 Apr 2012
Blog Post:
Delete an Attribute from an Entity in Microsoft Dynamics CRM 2011 Using VB.NET
Jamie Miley
This illustration DeleteAttributeRequest to show you how to delete an attribute from an entity in Microsoft Dynamics CRM 2011 using VB.NET. Ok, here is what the code looks like once your service is instantiated! In VB.NET Dim attribute As New StringAttributeMetadata attribute.SchemaName...
on
30 Mar 2012
Blog Post:
Add a Custom Attribute to an Entity in Microsoft Dynamics CRM 2011 Using VB.NET
Jamie Miley
This illustration will show you how to add a new custom attribute to an entity in Microsoft Dynamics CRM 2011 using VB.NET. Ok, here is what the code looks like once your service is instantiated! In VB.NET Dim attribute As New StringAttributeMetadata attribute.SchemaName = "new_stringattribute"...
on
29 Mar 2012
Blog Post:
Check if an Entity can Participate in Many-To-Many Relationships in Microsoft Dynamics CRM 2011 Using VB.NET
Jamie Miley
This illustration will show you how to check if an entity can participate in many-to-many (N:N) relationships in Microsoft Dynamics CRM 2011 using VB.NET. Ok, here is what the code looks like once your service is instantiated! In VB.NET Dim req As New CanManyToManyRequest req.EntityName...
on
28 Mar 2012
Blog Post:
Check if an Entity can be the Referencing (Many) Entity in a One-To-Many Relationship in Microsoft Dynamics CRM 2011 Using VB.NET
Jamie Miley
This illustration will show you how to check if an entity can be the referencing (many) entity in a one-to-one relationship in Microsoft Dynamics CRM 2011 using VB.NET. Ok, here is what the code looks like! In VB.NET Dim req As New CanBeReferencingRequest req.EntityName = "account"...
on
27 Mar 2012
Blog Post:
Check if an Entity can be the Primary Entity in a One-To-Many Relationship in Microsoft Dynamics CRM 2011 Using VB.NET
Jamie Miley
This illustration will show you how to check if an entity can be the primary entity in a one-to-one relationship in Microsoft Dynamics CRM 2011 using VB.NET. Ok, here is what the code looks like! In VB.NET Dim req As New CanBeReferencedRequest req.EntityName = "account" ...
on
25 Mar 2012
Blog Post:
Update an Entity Instance in Microsoft Dynamics CRM 2011 Using VB.NET
Jamie Miley
This illustration shows how to use UpdateRequest to update an entity instance in Microsoft Dynamics CRM 2011 with VB.NET Ok, here is what the code looks like! In VB.NET 'get entity to update Dim entityAccount As Entity = service.Retrieve("account", New Guid("063DE6F9...
on
15 Mar 2012
1
2