Feb 26, 2003 #1 Dijital MIS Mar 15, 2002 47 US I have a template called Test.XLT. I want to be able to open a new workbook using that template. Is there an easy way to do this?? -Jim Connors
I have a template called Test.XLT. I want to be able to open a new workbook using that template. Is there an easy way to do this?? -Jim Connors
Feb 27, 2003 #2 arst06d Programmer Nov 29, 2002 324 set oXL = createobject("Excel.Application" oXL.visible=true oXL.Workbooks.Add test.xlt you might need to qualify the path to the template file if you dont save it where Excel expects. Upvote 0 Downvote
set oXL = createobject("Excel.Application" oXL.visible=true oXL.Workbooks.Add test.xlt you might need to qualify the path to the template file if you dont save it where Excel expects.
Feb 28, 2003 Thread starter #3 Dijital MIS Mar 15, 2002 47 US It did not work as such, but adding quotes and the full file path worked like a charm!! Thanks! Do you know perhaps anywhere that has good documentation on the office (2000 & XP) DOM? -Jim Connors Upvote 0 Downvote
It did not work as such, but adding quotes and the full file path worked like a charm!! Thanks! Do you know perhaps anywhere that has good documentation on the office (2000 & XP) DOM? -Jim Connors
Feb 28, 2003 #4 arst06d Programmer Nov 29, 2002 324 We're still way behind with Office 97 I've usually found the on-line help in Excel97 to be OK. Anything a bit unusual I go surfing. Cheers. Upvote 0 Downvote
We're still way behind with Office 97 I've usually found the on-line help in Excel97 to be OK. Anything a bit unusual I go surfing. Cheers.