DYMO.Label.Framework Reference Not Found

Problem: DYMO.Label.Framework reference not found. Solutions: Download and install latest DLS at http://developers.dymo.com/category/dymo-label-framework/ and re-link DYMO.Label.Framework to C:\Program Files (x86)\DYMO\DYMO Label Software\Framework.net4\DYMO.Label.Framework.dll Information: The latest release of DLS is now available for customers that have been experiencing issues with the previous 8.6 release. Issues fixed in 8.6.1 include: Print Quality issues with a variety of... » read more

Using AZCopy to Transfer Azure Blob Data

AzCopy is a command-line utility designed for copying data to/from Microsoft Azure Blob, File, and Table storage, using simple commands designed for optimal performance. You can copy data between a file system and a storage account, or between storage accounts. Download all blobs in a container AzCopy /Source:https://myaccount.blob.core.windows.net/mycontainer /Dest:C:\myfolder /SourceKey:key /S Download a file Download... » read more

C# MultiThreading and Lock

When working with a multithreading application it is very important for developers to handle multiple threads for a critical section of code. Monitor and lock is the way to provide thread safety in a multithreaded application in C#. Both provide a mechanism to ensure that only one thread is executing code at the same time... » read more

C# Multi-dimension Array

// Two-dimensional array. int[,] array2D = new int[,] { { 1, 2 }, { 3, 4 }, { 5, 6 }, { 7, 8 } }; // A similar array with string elements. string[,] array2Db = new string[3, 2] { { "one", "two" }, { "three", "four" }, { "five", "six" } }; // Three-dimensional... » read more

Enterprise Resource Planning (ERP)

Enterprise resource planning (ERP) is the integrated management of core business processes, often in real-time and mediated by software and technology. ERP is usually referred to as a category of business management software — typically a suite of integrated applications—that an organization can use to collect, store, manage, and interpret data from these many businessactivities. ERP provides an integrated and... » read more

SiSense

Sisense’s BI software makes it easy to instantly reveal business insights from complex data – any data source, any size. Sources:

Summernote Icons Not Displaying

Problem: Summernote Icon Not Displaying when deployed to production server. Fix: In the summernote.css file, change all references of “font/” to “/Content/plugins/summernote/font/”. Resources: https://github.com/summernote/summernote/issues/1781

Mapping Azure Storage File to Windows

Once you have created a “Azure Storage File” folder, you can map it to a drive on your Windows, Linux, or MaxOS computer. Windows Example: 1. Go to the following to get the command line… Azure Portal -> Storage accounts -> File service -> Files > Connect 2. Run the following in command prompt… net... » read more