Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Open Excel after Copy to XLS
Message
From
04/02/2010 14:21:52
 
 
To
04/02/2010 12:06:48
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
01447539
Message ID:
01447609
Views:
73
this one is useful
k
oExcel = Createobject("Excel.Application")
	If Vartype(oExcel) != "O"
* could not instantiate Excel object
* show an error message here
	Return .F.
	Endif
	oWorkbook = oExcel.Application.Workbooks.Open ("C:\SAMPLE..xls")
	oExcel.Visible = .T.
	oExcel.Application.UserControl=.T.
	oExcel.Application.Interactive=.T.
	Clear
	oExcel.Quit()
Previous
Reply
Map
View

Click here to load this message in the networking platform