To All
Does anyone have an example on how to create an Excel .csv comma delimited useing TOleAuto() ??
Many Thanks
Rick Lipkin
#define xlCSV 6
FUNCTION MAIN()
LOCAL oExcel := CREATEOBJECT( "Excel.Application" )
LOCAL oSheet
oExcel:WorkBooks:Add()
oSheet = oExcel:ActiveSheet
oSheet:Cells( 1, 1 ):Value = "This is a test 1"
oSheet:Cells( 1, 2 ):Value = "This is a test 2"
oSheet:Cells( 1, 3 ):Value = "This is a test 3"
oExcel:ActiveWorkBook:SaveAs( "E:\XHARBOUR\SAVED.CSV", xlCSV )
oExcel:ActiveWorkBook:Close( 0 )
oExcel:Quit()
RETURN NIL
Return to FiveWin for Harbour/xHarbour
Users browsing this forum: No registered users and 107 guests