Comunidad .NET de Cd. Juárez

Más que un foro virtual. Más que preguntas y respuestas. Somos una comunidad
que se ayuda para producir desarrolladores profesionales de alto rendimiento.
Welcome to Comunidad .NET de Cd. Juárez Sign in | Join | Help

Front Page News

  • [VSTO] Debugging VSTO applications

    One very useful trick to debug VSTO applications is this “cheeky” flag: VSTO_SUPPRESSDISPLAYALERTS . It’s a environment variable to enable error messages about dodgy exceptions, like COM exceptions. For example, I was getting a strange behavior in my Office Word application when I was trying to add a new Plain Text Control: However, my VSTO application didn’t show me any messages or warning about any error, until I added this environment variable VSTO_SUPPRESSDISPLAYALERTS to my system with value...
    03-02-2010, 12:32 PM from Escuchoyo to Escuchoyo
    Filed under:
  • [WPF] Custom Check Box Template

    Once again, let’s enjoy the WPF’s flexibility to change any style and template. In this case, I’ve customised the Check Box’s style to get the next appearance: Unchecked Checked Focus Mouse Over You can download the code from here. My example is based on this good MSDN article about Check Box’s template . There you can also find templates for other controls....
    02-26-2010, 1:01 PM from Escuchoyo to Escuchoyo
    Filed under:
  • [WCF] Delegation between WCF and CRM Services

    Impersonation and Delegation are important concepts around the services' world. Impersonation restricts client access to resources in the local machine where is running the service and Delegation restricts client access to resources on other machine. In my scenario, I was trying to access from a WCF service to Dynamics CRM 4.0 services using Delegation. In WCF, Delegation is a special type of Impersonation, which can be configured easily according to the next good articles: http://msdn.microsoft.com/en-us/library/ms730088.aspx...
    02-23-2010, 12:37 PM from Escuchoyo to Escuchoyo
    Filed under:
  • Recuerdos

    Hay tantas cosas que se quedaron guardadas, tantas cosas que me hubiera gustado escuchar, aprender y reflexionar. Aunque no tengo una memoria digital, tengo en mi mente recuerdos tan nítidos como ese árbol de navidad que cobijaba nuestros regalos, o como Read More......
    02-11-2010, 11:21 PM from La Neurona Digital to La Neurona Digital
  • Eventos enrutados para Windows Forms

    Cuando se presentó WPF hace ya algunos años, éste venía con un nuevo modelo de eventos que resultaban muy potentes, los eventos enrutados. Podemos definir los eventos enrutados como un tipo de evento que puede invocar controladores o varios agentes de Read More......
    Filed under: , ,
  • CRM Case Study. Alfapeople and TTT Moneycorp

    Below you can watch the video of a Microsoft case study about one of the main customer of my current company Alfapeople Ltd: TTT Moneycorp . Here I’ve enjoyed working in interesting and challenging projects related to CRM, WCF and WPF In addition, in the next link http://www.microsoftmovies.co.uk/dynamics/general/ you can watch more case studies about different businesses and Microsoft solutions in UK. Enjoy :)...
    01-20-2010, 2:38 PM from Escuchoyo to Escuchoyo
    Filed under:
  • Que no nos tomen el pelo

    Dados los últimos acontecimientos que llevamos padeciendo durante las últimas semanas me veo obligado a transmitir mi descontento con la nueva ley que el gobierno quiere aprobar para que sea una comisión particular y no el poder judicial quien tenga potestad Read More......
  • [CRM4] Thanks Rollup 8. Error adding a user to CRM 4

    According to the CRM Update Rollup 8 , they have resolved the following error: “After you install Update Rollup 3 or Update Rollup 4, you cannot add a user to more than one organization in the same deployment of Microsoft Dynamics CRM if the user exists in a child domain" …and definitely they have, because I tested it the last week. However, the scenario wasn’t exactly a parent/child domain, but a trusted link domain were instead. Download CRM 4 Rollup 8...
    01-15-2010, 11:47 AM from Escuchoyo to Escuchoyo
    Filed under:
  • [CRM4] Searches and Views

    Searches are fundamental in any CRM. Dynamics CRM provides different ways to search records from any entity. The most powerful search is the Advanced Find , which allows normal users to create custom queries and save them as new views, so that they can reuse them: Why do some attributes not show up? Only searchable attributes are showed up in Advanced Find Looking at CRM Metadata a bit deeply, this “Searchable” property is translated to “ ValidForAdvancedFind ” property in AttributeMetadata. However,...
    01-14-2010, 10:12 AM from Escuchoyo to Escuchoyo
    Filed under:
  • No te lo tomes Im-Personal (impersonate=true) Parte 2/2

    Antes de entrar de lleno a lo que es la impersonalización , hay que comentar algunas cosas básicas sobre la configuración de los sitios web (al menos con .Net) Hay un archivo XML llamado Web.Config que es donde se definen/guardan las configuraciones de Read More......
    01-13-2010, 12:20 AM from La Neurona Digital to La Neurona Digital
  • [CRM4] Add/Remove Activities and Notes relationships

    When you create a new entity in CRM 4, you have to define if it will have Note and Activities relationships. After you’ve created it, you won’t be able to change it (important to remember it!). However, sometimes we forget it :) and we need to add or remove these relationships later. In that case, we can do the next trick: Export the corresponding entity that you want to add / remove Note and Activities relationships Delete this entity from CRM In the XML file that you’ve exported with the customisations,...
    01-12-2010, 9:59 AM from Escuchoyo to Escuchoyo
    Filed under:
  • Por los derechos fundamentales en la red

    Consideramos imprescindible la retirada de la disposición final primera de la Ley de Economía Sostenible por los siguientes motivos: 1 -Viola los derechos constitucionales en los que se ha de basar un estado democrático en especial la presunción de inocencia, Read More......
  • [WPF/WCF] DataGrid + DoubleClick + MVVM + Loading Splash (description & code)

    Using the DataGrid WPF Toolkit, this post shows a simple client/server application to fill a DataGrid according to the information that is provided by a WCF service. When any row receives a double click, a new document (jpeg or docx for this example) is opened by an external application. The application is designed using MVVM pattern, where View and ViewModel are placed in the client side and Model in the server side. In our example, we will show a set of “Alerts” in a DataGrid , so that we will...
    01-07-2010, 10:02 AM from Escuchoyo to Escuchoyo
    Filed under: ,
  • [DataBase] Quick way to test DB connection: UDL files

    Many times we need to test quickly database connections. An easy and handy way is to use UDL files. From your desktop, try to create a new file and rename its extension with “.udl” if you do double click in the new file, you will get a familiar dialog to configure your DB connection string and test it:...
    12-16-2009, 11:44 AM from Escuchoyo to Escuchoyo
    Filed under: ,
  • Test Driven Development: Pruebas de Software a priori

    En Abril del 2007 di una platica en la UACJ que llevo el mismo titulo de este post. Dicha platica se dio dentro de las actividades de la Sociedad de Estudios en Computacion , sociedad que liderean los profesores Nahitt Padilla, Saul Gonzalez y Arnulfo Read More......
    11-30-2009, 1:32 PM from La Neurona Digital to La Neurona Digital
More Posts Next page »
Powered by Community Server (Personal Edition), by Telligent Systems