ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Program not working after upgrade (https://www.excelbanter.com/excel-programming/279170-program-not-working-after-upgrade.html)

Patrick I[_2_]

Program not working after upgrade
 
The following line of code worked before I was upgraded to
Windows XP and Excel 2002.

Workbooks.Open
Filename:="C:\Inetpub\wwwroot\BCC\documents\2004_E _M_Calend
ar_" & reportDate & ".xls"

The program stops at the above line with the message:

Run-time error '1004':

Method 'Open' of object 'Workbooks' failed

The rest of the program works if I manually open the
workbook and continue with the rest of the code. Any
suggestion is appreciated. Thanks.

Mike[_37_]

Program not working after upgrade
 
have you checked that reportDate contains the string that you expect it to
contain, in the same format as your old operating system used?
Or have you checked the path is still the same, since you've upgraded?

hth

"Patrick I" wrote in message
...
The following line of code worked before I was upgraded to
Windows XP and Excel 2002.

Workbooks.Open
Filename:="C:\Inetpub\wwwroot\BCC\documents\2004_E _M_Calend
ar_" & reportDate & ".xls"

The program stops at the above line with the message:

Run-time error '1004':

Method 'Open' of object 'Workbooks' failed

The rest of the program works if I manually open the
workbook and continue with the rest of the code. Any
suggestion is appreciated. Thanks.




Don Guillett[_4_]

Program not working after upgrade
 
I just tested this
Workbooks.Open Filename:="C:\myfolder\myfile.xls"
It could be as simple as Open _ with the space & dash missing or spelling

"Patrick I" wrote in message
...
The following line of code worked before I was upgraded to
Windows XP and Excel 2002.

Workbooks.Open
Filename:="C:\Inetpub\wwwroot\BCC\documents\2004_E _M_Calend
ar_" & reportDate & ".xls"

The program stops at the above line with the message:

Run-time error '1004':

Method 'Open' of object 'Workbooks' failed

The rest of the program works if I manually open the
workbook and continue with the rest of the code. Any
suggestion is appreciated. Thanks.




Patrick I.

Program not working after upgrade
 
Yep. I checked that the reportDate is still good and I've
double checked my path to be exactly the same.

Thanks.
-----Original Message-----
have you checked that reportDate contains the string that

you expect it to
contain, in the same format as your old operating system

used?
Or have you checked the path is still the same, since

you've upgraded?

hth

"Patrick I" wrote in message
...
The following line of code worked before I was upgraded

to
Windows XP and Excel 2002.

Workbooks.Open

Filename:="C:\Inetpub\wwwroot\BCC\documents\2004_E _M_Calend
ar_" & reportDate & ".xls"

The program stops at the above line with the message:

Run-time error '1004':

Method 'Open' of object 'Workbooks' failed

The rest of the program works if I manually open the
workbook and continue with the rest of the code. Any
suggestion is appreciated. Thanks.



.


Patrick I.

Program not working after upgrade
 
Okay. I created the path and file name noted below and it
DOES open in my program. Hmmm... I know everything is
correct as far as the path and file name with my original,
however, when I attempt to open the file with Windows
Explorer I get a "Renamed invalid sheet name" error
message.

-----Original Message-----
I just tested this
Workbooks.Open Filename:="C:\myfolder\myfile.xls"
It could be as simple as Open _ with the space & dash

missing or spelling

"Patrick I" wrote in message
...
The following line of code worked before I was upgraded

to
Windows XP and Excel 2002.

Workbooks.Open

Filename:="C:\Inetpub\wwwroot\BCC\documents\2004_E _M_Calend
ar_" & reportDate & ".xls"

The program stops at the above line with the message:

Run-time error '1004':

Method 'Open' of object 'Workbooks' failed

The rest of the program works if I manually open the
workbook and continue with the rest of the code. Any
suggestion is appreciated. Thanks.



.


Sandy V

Program not working after upgrade
 
Have you tried recording a macro whilst manually opening
your file, then compare new vs the old (including
reportDate).

To be sure code each into cells, and in another try
=A1=A2

Regards,
Sandy

-----Original Message-----
The following line of code worked before I was upgraded

to
Windows XP and Excel 2002.

Workbooks.Open
Filename:="C:\Inetpub\wwwroot\BCC\documents\2004_ E_M_Calen

d
ar_" & reportDate & ".xls"

The program stops at the above line with the message:

Run-time error '1004':

Method 'Open' of object 'Workbooks' failed

The rest of the program works if I manually open the
workbook and continue with the rest of the code. Any
suggestion is appreciated. Thanks.
.


Patrick I.

Program not working after upgrade
 
Yes I did. Thanks for the suggestion. I believe the code
is correct. It's the error message that pops up when
opening the book that is causing the problem.

BEGIN ERROR MESSAGE

Errors were detected in [filename] but Microsoft Excel was
able to open the file by making the repairs listed below.
Save the file to make these repairs permanent.

Renamed invalid sheet name.

END ERROR MESSAGE

I'm now trying to find out how to prevent this message
from popping up (there is nothing wrong with the "sheet
name").

-----Original Message-----
Have you tried recording a macro whilst manually opening
your file, then compare new vs the old (including
reportDate).

To be sure code each into cells, and in another try
=A1=A2

Regards,
Sandy

-----Original Message-----
The following line of code worked before I was upgraded

to
Windows XP and Excel 2002.

Workbooks.Open
Filename:="C:\Inetpub\wwwroot\BCC\documents\2004 _E_M_Cale

n
d
ar_" & reportDate & ".xls"

The program stops at the above line with the message:

Run-time error '1004':

Method 'Open' of object 'Workbooks' failed

The rest of the program works if I manually open the
workbook and continue with the rest of the code. Any
suggestion is appreciated. Thanks.
.

.


Sandy V

Program not working after upgrade
 
Are there any apostrophe's or spaces, if so see
http://support.microsoft.com/?id=107468

Regards,
Sandy

-----Original Message-----
Yes I did. Thanks for the suggestion. I believe the

code
is correct. It's the error message that pops up when
opening the book that is causing the problem.

BEGIN ERROR MESSAGE

Errors were detected in [filename] but Microsoft Excel

was
able to open the file by making the repairs listed

below.
Save the file to make these repairs permanent.

Renamed invalid sheet name.

END ERROR MESSAGE

I'm now trying to find out how to prevent this message
from popping up (there is nothing wrong with the "sheet
name").

-----Original Message-----
Have you tried recording a macro whilst manually opening
your file, then compare new vs the old (including
reportDate).

To be sure code each into cells, and in another try
=A1=A2

Regards,
Sandy

-----Original Message-----
The following line of code worked before I was upgraded

to
Windows XP and Excel 2002.

Workbooks.Open
Filename:="C:\Inetpub\wwwroot\BCC\documents\200 4_E_M_Cal

e
n
d
ar_" & reportDate & ".xls"

The program stops at the above line with the message:

Run-time error '1004':

Method 'Open' of object 'Workbooks' failed

The rest of the program works if I manually open the
workbook and continue with the rest of the code. Any
suggestion is appreciated. Thanks.
.

.

.



All times are GMT +1. The time now is 12:57 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com