Public Shared Function ConvertToProperCase(ByVal s As String) As String
If Not IsNothing(s) then
Return UCase(Left(s,1)) & LCase(Right(s,Len(s)-1))
End If
End Function
-
« DatePicker control for SQL RS2005 SP2 | SQL Server: Convert to Proper case function »
RS2005: Convert to Proper Case
@ 2009-02-13 – 20:14:02
0 Comments to RS2005: Convert to Proper Case
More interesting posts
- Using a SELECT statement with a searched CASE expression
- Reporting Services Tip
- Create row numbers based on the rows available in a table
- Parse Numbers from AlphaNumeric strings
- SQL Server: Convert to Proper case function
- RS2005: Convert to Proper Case
- DatePicker control for SQL RS2005 SP2
- Data migration in Oracle
- Identify and delete duplicate rows in a table
- Group total summary
