Expression Validation 
Float
(\+|-)?([0-9]+\.?[0-9]*|\.[0-9]+)([eE](\+|-)?[0-9]+)?

Number:
\d{1,}

[ add comment ]   |  permalink  |  related link  |   ( 3 / 4959 )
Check SQL Server 2000 Table Usage 
EXEC sp_MSforeachtable @command1="EXEC sp_spaceused '?'"

[ add comment ]   |  permalink  |  related link  |   ( 3 / 3374 )
SQL Server 2000 Update Data Inner Join Another Table 
UPDATE table
SET values
FROM join other tables here.

Example

Update TableA
SET TableA.Col1=TableB.Col1
From TableA INNER JOIN TableB ON TableA.ID=TableB.ID

[ add comment ]   |  permalink  |  related link  |   ( 3 / 10479 )
Add Confirmbox in C# .NET 
Me.BtnDelete.Attributes.Add("onclick", _
"return confirm('Are you sure you want to delete?');")

[ add comment ]   |  permalink  |  related link  |   ( 3 / 2653 )
How to remove recent projects from Visual Studio Start Page 
1. Close Visual Studio if it is running.
2. Start the Registry Editor (run regedit).
Registry Editor
3. Navigate to this registry key:
HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\8.0\ProjectMRUList
Registry Editor 2
4. Then delete the key that has the project you do not want to keep in the list.


[ 1 comment ] ( 91 views )   |  permalink  |  related link  |   ( 3 / 11058 )

NextNext