keepingbusy
Programmer
Hi
Sorry guys the search facility is not working.
How can I remove the first row in an Excel spreadsheet created in the following way:
When the Excel file opens, the first row is populated with the column names e.g. A B C D E etc
How can I remove that line?
Using VFP 9.
Thanks guys
Lee
Sorry guys the search facility is not working.
How can I remove the first row in an Excel spreadsheet created in the following way:
Code:
USE MYFILE
STORE SPACE(3) TO mfile
STORE mstart+"-"+mfinish TO mfile
EXPORT TO &mfile TYPE XLS
CLOSE DATABASES
CLEAR
STORE TRIM(mfile)+".xls" TO mfileopen
DECLARE INTEGER ShellExecute IN shell32.dll ;
INTEGER hndWin, ;
STRING cAction, ;
STRING cFileName, ;
STRING cParams, ;
STRING cDir, ;
INTEGER nShowWin
cFileName = mfileopen
cAction = "open"
ShellExecute(0,cAction,cFileName,"","",1)
CLEAR DLLS ShellExecute
How can I remove that line?
Using VFP 9.
Thanks guys
Lee