skip to main
|
skip to sidebar
vivekbala
Thursday, November 12, 2009
date coversion(American to Indian Format and vice versa)
Public Function fn_convertdate(ByVal dates As String) As String
Try
Dim strr(), str As String
str = dates
strr = dates.Split("/")
str = strr(0)
strr(0) = strr(1)
strr(1) = str
dates = ""
dates = strr(0) & "/"
dates += strr(1) & "/"
dates += strr(2)
Return dates
Catch ex As Exception
End Try
End Function
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Blog Archive
►
2010
(17)
►
July
(1)
►
Jul 13
(1)
►
March
(5)
►
Mar 19
(1)
►
Mar 15
(1)
►
Mar 13
(1)
►
Mar 11
(1)
►
Mar 06
(1)
►
February
(8)
►
Feb 27
(1)
►
Feb 15
(1)
►
Feb 14
(3)
►
Feb 12
(1)
►
Feb 11
(2)
►
January
(3)
►
Jan 30
(2)
►
Jan 08
(1)
▼
2009
(25)
►
December
(3)
►
Dec 28
(1)
►
Dec 26
(1)
►
Dec 03
(1)
▼
November
(22)
►
Nov 29
(1)
►
Nov 26
(1)
►
Nov 23
(2)
►
Nov 20
(1)
►
Nov 17
(1)
▼
Nov 12
(16)
javascript for validation
openFileDialog c#
Fill gridview using Datareader and Dataset
Dynamic Datatable in C#
retrieve file from database c#
fill treeview programmatically in asp.net
reset controls in asp.net
Restrict file selected in FileUpload control in As...
split, substring and remove null values in string ...
fill ListBox ,CheckBoxList programetically
create table programmatically with 'n' number of c...
validate programmatically VB.Net
covert number into words(like denomination)
date coversion(American to Indian Format and vice ...
Export DataSet To Excel VB.Net
upload and retrieve images,doc,docx,txt to and fro...
Followers
About Me
Vivekanandan Balakrishnan
Software Engineer
View my complete profile
No comments:
Post a Comment