
11-25-2001, 09:35 AM
|
|
Iron-Fisted Programmer
Retired Moderator * Guru *
|
|
Join Date: Jul 2001
Location: Fayetteville Arkansas USA
Posts: 18,127
|
|
Re: VB6 and Excel2000
|
You should get rid of the Object and put it back the way it was, then go to
the References dialog from the Projects menu, find the Excel Object Library
check it and OK. This will give you early binding, which is much more
efficient than the late binding you have changed to.
The path can be relative to your app's directory. Just to be on the safe
side, you might want to use App.Path & "\" & "mysheet.xls"
|
|