How to catch specific MS-SQL SQLExceptions in C# and VB.NET
To catch specific SQLExceptions using Microsoft.NET and Microsoft Sequel Server you can use the snippet below. You also need to look for the specific error numbers/codes you want to catch.…
All the Code Snippets and Samples you need
To catch specific SQLExceptions using Microsoft.NET and Microsoft Sequel Server you can use the snippet below. You also need to look for the specific error numbers/codes you want to catch.…
To Remove duplicates from a IEnumerable using C# or VB.NET you can use the snippet below. Sample .NET 3.5 and newer Sample C# Sample VB.NET (autogenerated) Sample .NET 2.0 Sample…
To select a item on rightclick using devexpress ListboxControl you need to use the MouseDown Event. See the samples below. Sample C# Sample VB.NET
To get all Description Attributes of an Enum using C# or VB.NET you can use the snippet below. Sample C# – Class Usage C# Sample VB.NET – Class Usage VB.NET…
To manually populate a multicolumn devexpress TreeList using C# and VB.NET you can use the snippet below. Sample C# Sample VB.NET
To search stored procedures using MS-SQL you can use the snippet below. https://www.youtube.com/watch?v=qbHT5HYyTKg Sample MSSQL
HTML5 Datalist Element Description HTML5 introduced the new <datalist> tag, which specifies a list of predefined <input> element options. It is used to provide the autocomplete feature on <input> elements.…
To deep copy a IList in C# and VB.NET you can use the snippet. Sample C# Sample VB.NET
To make a multicolumn listbox in C# and VB.NET you can use the following snippet. First you need to add the Columns to the Listview. Sample C# Sample VB.NET
To check if an array contains a value in Javascript you can use the snippet below. Sample Javascript