I found the following code on the forums...

VB Code:
  1. Dim exl As Excel.Application
  2.         [b]exl = New Excel.Application[/b]
  3.         exl.Workbooks.OpenText("myfile.csv")
  4.         exl.Workbooks.Close()
  5.         exl = Nothing

It isn't working. It says that I can't use "New" on the bolded line because Excel.Application is an interface.

What do I do?

Thanks,

Squirrelly1