How to get the current path using VBScript
To get the current path using VBScript you can use the snippet below. Samples VBScript Sample If you have any questions or suggestions feel free to rate this snippet, post…
All the Code Snippets and Samples you need
To get the current path using VBScript you can use the snippet below. Samples VBScript Sample If you have any questions or suggestions feel free to rate this snippet, post…
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 match strings using wildcards in C# and VB.NET you can use the following snippet. It will internally convert the wildcard string to a Regex. The Console-Output of this sample…
To get the current Database and Log Filesize using MSSQL you can use the snippet below. Tested using SQL Server 2012. Sample MSSQL Sample Output
What is the difference between typeof(), GetType() and is? typeof() takes a type name specified at compile Time. GetType() gets the Type of an Object at runtime is returns true…
To get the executable filename in C# and VB.NET you can use one the following methods. Sample C# Sample VB.NET
To round to X decimal places in C# and VB.NET you can use one of the following methods. Take a look at the output image to see the results. Sample…
Using doubleclick events in the Devexpress Gridview Control is a simple task. There are 2 different ways of doing this. The variant you choose, depends on the Gridview’s gridView.OptionsBehavior.Editable property.…
Today i recieved the following Nuget Error while trying to install Automapper. Failed to initialize the PowerShell host. If your PowerShell execution policy setting is set to AllSigned, open the…
How to use Node Doubleclick in Devexpress Treelist in C# and VB.NET you can use the following snippet. Sample C# Sample VB.NET