On Tue, Jun 30, 2009 at 7:13 AM, Devadula<[email protected]> wrote: > > hai every body..i need code for window application in vb language for > the converting .txt file to .xls file.. > > Thanks in Advance
You guys are all being too hard on Devadula.
Simple questions demand simple answers.
I haven't done VB since v5, but, here you go.
----------------------------------------------------------
Private Sub Command1_Click()
#
On Error Resume Next
#
Name "Devadula.txt" As "Devadula.xls"
#
End Sub
