world wide web development problems asp net php html xhtml css javascript jquery w3dproblems
Friday, January 23, 2015
Wednesday, January 14, 2015
Friday, January 2, 2015
Enabling CLR Integration on SQL Server
EXEC sp_CONFIGURE 'show advanced options' , '1'; GO RECONFIGURE WITH OVERRIDE GO EXEC sp_CONFIGURE 'clr enabled' , '1' GO RECONFIGURE WITH OVERRIDE GOIf you use with override option, then restart is not required.
Crystal Report: Pad a number with leading zeros up to a fixed length
If table.field is a number
ToText({table.field},"00000000")
or
if is a string
Right("0000"&{MyFieldToPad},8)
ToText({table.field},"00000000")
or
if is a string
Right("0000"&{MyFieldToPad},8)
Subscribe to:
Comments (Atom)