Pipes utilization to display friendly labels for Enums in Angular

In this article, I will show a simple solution to display a user-friendly labels for enumerations in angular using Pipes. The solution is an example of reuse-based software engineering strategy.  It define a design pattern (template) that can be repeatedly applied to a …

Read more »

Cannot read property ‘Qa’ of undefined error for WordTree

This is just for colleagues that has experience the following error. I was not able to find any post in the web and would like to share the solution. The error is Cannot read property ‘Qa’ of undefined or Cannot read …

Read more »

google.visualization.DataTable php helper class

In this article I would like to present a helper class that I use in my php project HomeBook. I am very happy using it and I would like to share it with You. Everybody is free to use and modify it. …

Read more »

Monitoring Page Generation and Page Load Time in MVC 3 .Net.

It seems that many post concern .Net development hints do not care about the reader. That’s I decided to write this blog collecting information from difference places and putting together. There are some additional helpful things from me… This post …

Read more »

View the list of recently opened files in Windows width C#

Each time that you open a file from Windows Explorer or from a standard open/save dialog-box, the name of the file that you opened is recorded by the Windows operating system. Some of the names are saved into the ‘Recent’ …

Read more »

After upgrading to .NET Framework 4.0

Some notes and links that help me to solve some problems: Crystal Reports error The error is: Unknown Query Engine Error Error in File .. I found answer in this blog devshed.us. After installation close and open your project. A conversion process …

Read more »

C# TableLayoutPanel and and Mouse Scroll.

I have a simple problem with my windows application developed in .NET. I have a TableLayoutPanel which contains a RichTextBoxcontrol. I am not able to scroll the TableLayoutPanel. I made a search in Google and found that many people has the same problem like [1] [2] The idea for …

Read more »

RitchTextBox Drag & Drop from RTF and HTML Originators

RitchTextBox Drag & Drop from RTF and HTML Originators

Drag-and-drop operations with the Windows Forms RichTextBox control are done by handling the DragEnter and DragDrop events. To enable drag operations in a RichTextBox control[1] 1. Set the AllowDrop property of the RichTextBox control to true. 2. Add handlers for both the …

Read more »

Read data from Microsoft Excel using Microsoft Visual C# .NET

transfer data

There is many ways to read excel file. This article describes several methods for transferring data from Microsoft Excel using a Microsoft Visual C# .NET program. It also presents the advantages and disadvantages of each method. State of the Art …

Read more »