How to get monday date of current week in MSSQL
To get the Monday date of the current week you can use the snippet below.
All the Code Snippets and Samples you need
To get the Monday date of the current week you can use the snippet below.
To get all column names of a Table in Oracle you can use the following snippet. If you are using MSSQL, take a look at this snippet -> How to…
To send/post Data using a WebRequest in C# and VB.NET you can use the following snippet. Sample C# Sample VB.NET FOR MORE INFORMATIONS SEE THE MSDN: How to: Send Data…
To get a list of all tables in Oracle you can use the following query. if your user does not have sufficient access rights to query dba_tables, you can try…
In MSSQL IF ELSE is not supported inside the SQL-Query. For a similiar behaviour you should use CASE WHEN keyword. Sample Query
If you want to change the information, the debugger variable window shows for your class, you can use the DebuggerDisplayAttribute. Simply put the Attribut above your class declaration. The Value…
To get current Year in PHP you can simply use the following method. Sample PHP
To get focusedrow cell value using Devexpress XtraGrid in C# and VB.NET you can use one of the following ways. Samples Sample C# string value = gridView1.GetFocusedRowCellValue("ColumnName").ToString(); string value =…
To get Windows Product Name in C# and VB.NET you can use the following snippet. Sample C# Sample VB.NET Tipp: To use ManagementObjectSearcher you need to set a Reference to…
To get the executable filename in C# and VB.NET you can use one the following methods. Sample C# Sample VB.NET