angular Angular 9 can't bind to 'x' since it isn't a known property of 'y' Ran into a very strange problem while migrating from Angular 8 to 9. Angular 9 requires [https://angular.io/guide/migration-undecorated-classes] certain base classes to be decorated with at least @Directive() in order for the compiler to have necessary metadata. error NG8002: Can't bind to 'label'
DigitalOcean Moving regions in DigitalOcean is super easy I was truly amazed how sweat-free moving my Droplet between regions was. Done in a matter of minutes (not counting save times)! I set up a DigialOcean Droplet in one of the Amsterdam slots a couple of years ago. Not so long ago I've also set up OpenVPN
ssis Error 0xC0011008 while deploying SSIS package Recently I developed SSIS packages for a customer. Needless to say the works on my PC stamp applied, but I could also deploy it to our test environment, and I created a separate VM just to test if I can deploy it. However, on the client's system it
sql Save GUIDs with hyphens in MSSQL When you're saving a GUID to the database as a string value, you should save them with hyphens. That way, you can later cast is as a uniqueidentifier, which is SQL Server's native GUID type. If you can, you should save it as a uniqueidentifier of
crm SSIS cancels in Visual Studio I stepped into a deep hole while developing SSIS packages for CRM using KingswaySoft's software. Packages stopped running in Visual Studio 2012. As soon as the package was executed, it immediately switched to Cancel state, as reported by the Output window. Nothing was written to the Execution Results,
crm Using Firebase for simple CRM logging Sometimes you want to do some simple logging in your CRM plugin or custom workflow and you can't do any debugging and tracing is just not what you need. Firebase [https://www.firebase.com] is a database. The cloud kind. It has a REST interface through which you
Project with CRM reference not compiling? Did you reference a CRM assembly in your project, and it doesn't compile because it can't find types such as Entity or CrmConnection even though your intellisense shows them just fine? Odds are you are targeting the wrong framework version. I found that from v7, the
crm CRM MessageSecurityException and incorrect time settings If you get MessageSecurityException: An unsecured or incorrectly secured fault was received from the other party. See the inner FaultException for the fault code and detail. An error occurred when verifying security for the message. it's like you have a time settings issue on your system. Make sure
crm CRM OnOrAfter OnOrBefore ignore time component As you know, under the hood there's no just date data in CRM. When searching by DateTime fields in CRM, the operators on-or-after and on-or-before will ignore the time component of your query and will just search by date. Advanced find doesn't give you a lot