Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I am looking to save an excel sheet to a tab delimited file
oXl = CREATEOBJECT( [Excel.Application] )
lcFile = GETFILE()
owb = oXl.Workbooks.Open( lcFile )
oXl.Visible = .T.
oSheet = oWb.ActiveSheet
oRange = oSheet.Range( [B10], [E15] )
oRange.Copy()
STRTOFILE( _CLIPTEXT, [test.txt] )
MODIFY FILE test.txt
I am not sure of any other way to bring the xml file into a dbf format
The problem actually is that the file originally starts out as an XML file. I am opening the file in excel and modifying some of the columns, then I was trying to save as a text tab delimited file and then append to a dbf structure. I am not sure of any other way to bring the xml file into a dbf format in the way I get it when I open it into excel 2003 first then manually manipulate the cells and then save it as a text tab delimited file.