Microsoft
Software
Hardware
Network
Question : Converting Date format
how to convert the "20090902" to "10/2/2009"
is there a conversion formula or you have to do some left right mid manipulations?
Answer : Converting Date format
Dim s
s = "20090902"
s = Mid(s, 5, 2) & "/" & Mid(s, 7) & "/" & Left(s, 4)
if you want it in a query, change s with the name of the field
Random Solutions
Spring AOP implimentation to access database connection pool
SpellNumber
SBS 2003 Backup Solution
Auto Send Excel as Email Attachment
Sorting in Java
LINQ can't be used in Web app?
Mixing x32 and x64 apps and OS's
Default Printer Changes using Terminal Server
Use different HTTP Redirects on multiple virtual directories in IIS 7.5
Elevate user security to admin in Windows 7