Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Getting "Permission Denied error 70" on Windows XP and 2003

Hi All,

I have developed a VBA program which will automatically make decisions on
the web page. It is working fine on Windows 2000. But its giving error as
"Permission Denied error 70" on Windows XP and 2003.

Can you please let me know if anybody knows the solution for this?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9,101
Default Getting "Permission Denied error 70" on Windows XP and 2003

I think they fixed a security problem with excel 2000 in excel 2003 which
performed an access test before creating a new file. Try manually creating
the file in the same directory by doing a saveas from the spreadhsheet. You
need to get the permission changed in the directory yoiu are writting to.

"Lalit Chaudhari" wrote:

Hi All,

I have developed a VBA program which will automatically make decisions on
the web page. It is working fine on Windows 2000. But its giving error as
"Permission Denied error 70" on Windows XP and 2003.

Can you please let me know if anybody knows the solution for this?

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default Getting "Permission Denied error 70" on Windows XP and 2003

Thanks for the reply. But i am not writing to anyfile. I am just automating
the web browser to do some steps. I am getting the error on the below first
line. Actually the following code is in the loop. When the item is checkbox
or radio-box its working but when it will be the Listbox, its giving the
error!

If element.Type = "select-one" Then
Debug.print "List Box"
Else
Call element.Click
Debug.Print "Selecting Save Tool: " & element.ID
Do While IEVNT.Busy: DoEvents: Loop
End If

"Joel" wrote:

I think they fixed a security problem with excel 2000 in excel 2003 which
performed an access test before creating a new file. Try manually creating
the file in the same directory by doing a saveas from the spreadhsheet. You
need to get the permission changed in the directory yoiu are writting to.

"Lalit Chaudhari" wrote:

Hi All,

I have developed a VBA program which will automatically make decisions on
the web page. It is working fine on Windows 2000. But its giving error as
"Permission Denied error 70" on Windows XP and 2003.

Can you please let me know if anybody knows the solution for this?

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9,101
Default Getting "Permission Denied error 70" on Windows XP and 2003

There isn't enough information for me to repeat the problem. I don't know
how element is defined.

"Lalit Chaudhari" wrote:

Thanks for the reply. But i am not writing to anyfile. I am just automating
the web browser to do some steps. I am getting the error on the below first
line. Actually the following code is in the loop. When the item is checkbox
or radio-box its working but when it will be the Listbox, its giving the
error!

If element.Type = "select-one" Then
Debug.print "List Box"
Else
Call element.Click
Debug.Print "Selecting Save Tool: " & element.ID
Do While IEVNT.Busy: DoEvents: Loop
End If

"Joel" wrote:

I think they fixed a security problem with excel 2000 in excel 2003 which
performed an access test before creating a new file. Try manually creating
the file in the same directory by doing a saveas from the spreadhsheet. You
need to get the permission changed in the directory yoiu are writting to.

"Lalit Chaudhari" wrote:

Hi All,

I have developed a VBA program which will automatically make decisions on
the web page. It is working fine on Windows 2000. But its giving error as
"Permission Denied error 70" on Windows XP and 2003.

Can you please let me know if anybody knows the solution for this?

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default Getting "Permission Denied error 70" on Windows XP and 2003

Below is the code for your reference:

For Each element In IEVNT.Document.getElementsByName("savetool")
If element.Type = "select-one" Then
Debug.print "List Box"
Else
Call element.Click
Debug.Print "Selecting Save Tool: " &
element.ID
Do While IEVNT.Busy: DoEvents: Loop
End If
Next element

"Joel" wrote:

There isn't enough information for me to repeat the problem. I don't know
how element is defined.

"Lalit Chaudhari" wrote:

Thanks for the reply. But i am not writing to anyfile. I am just automating
the web browser to do some steps. I am getting the error on the below first
line. Actually the following code is in the loop. When the item is checkbox
or radio-box its working but when it will be the Listbox, its giving the
error!

If element.Type = "select-one" Then
Debug.print "List Box"
Else
Call element.Click
Debug.Print "Selecting Save Tool: " & element.ID
Do While IEVNT.Busy: DoEvents: Loop
End If

"Joel" wrote:

I think they fixed a security problem with excel 2000 in excel 2003 which
performed an access test before creating a new file. Try manually creating
the file in the same directory by doing a saveas from the spreadhsheet. You
need to get the permission changed in the directory yoiu are writting to.

"Lalit Chaudhari" wrote:

Hi All,

I have developed a VBA program which will automatically make decisions on
the web page. It is working fine on Windows 2000. But its giving error as
"Permission Denied error 70" on Windows XP and 2003.

Can you please let me know if anybody knows the solution for this?



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9,101
Default Getting "Permission Denied error 70" on Windows XP and 2003

You have a number of problems with the code

first your declaration LoadFileDate deson't match the call.

LoadFileDate(CBTfilesArray)

and

Function LoadFileDate()

I still don't have enough info to solve the problem. e-mail mye the file
and I will look at it

joel dot warburg at itt dot com

"Lalit Chaudhari" wrote:

Below is the code for your reference:

For Each element In IEVNT.Document.getElementsByName("savetool")
If element.Type = "select-one" Then
Debug.print "List Box"
Else
Call element.Click
Debug.Print "Selecting Save Tool: " &
element.ID
Do While IEVNT.Busy: DoEvents: Loop
End If
Next element

"Joel" wrote:

There isn't enough information for me to repeat the problem. I don't know
how element is defined.

"Lalit Chaudhari" wrote:

Thanks for the reply. But i am not writing to anyfile. I am just automating
the web browser to do some steps. I am getting the error on the below first
line. Actually the following code is in the loop. When the item is checkbox
or radio-box its working but when it will be the Listbox, its giving the
error!

If element.Type = "select-one" Then
Debug.print "List Box"
Else
Call element.Click
Debug.Print "Selecting Save Tool: " & element.ID
Do While IEVNT.Busy: DoEvents: Loop
End If

"Joel" wrote:

I think they fixed a security problem with excel 2000 in excel 2003 which
performed an access test before creating a new file. Try manually creating
the file in the same directory by doing a saveas from the spreadhsheet. You
need to get the permission changed in the directory yoiu are writting to.

"Lalit Chaudhari" wrote:

Hi All,

I have developed a VBA program which will automatically make decisions on
the web page. It is working fine on Windows 2000. But its giving error as
"Permission Denied error 70" on Windows XP and 2003.

Can you please let me know if anybody knows the solution for this?

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default Getting "Permission Denied error 70" on Windows XP and 2003

Hi,
But i am not understanding where i have written "LoadFileDate" function?
Also i am not able to find the option to send the file!
Again i am pasting my code:
For Each element In IEVNT.Document.getElementsByName("savetool")
If element.Type = "select-one" Then
Debug.print "List Box"
Else
Call element.Click
Debug.Print "Selecting Save Tool: " & element.ID
Do While IEVNT.Busy: DoEvents: Loop
End If
Next element

==================================================

"Joel" wrote:

You have a number of problems with the code

first your declaration LoadFileDate deson't match the call.

LoadFileDate(CBTfilesArray)

and

Function LoadFileDate()

I still don't have enough info to solve the problem. e-mail mye the file
and I will look at it

joel dot warburg at itt dot com

"Lalit Chaudhari" wrote:

Below is the code for your reference:

For Each element In IEVNT.Document.getElementsByName("savetool")
If element.Type = "select-one" Then
Debug.print "List Box"
Else
Call element.Click
Debug.Print "Selecting Save Tool: " &
element.ID
Do While IEVNT.Busy: DoEvents: Loop
End If
Next element

"Joel" wrote:

There isn't enough information for me to repeat the problem. I don't know
how element is defined.

"Lalit Chaudhari" wrote:

Thanks for the reply. But i am not writing to anyfile. I am just automating
the web browser to do some steps. I am getting the error on the below first
line. Actually the following code is in the loop. When the item is checkbox
or radio-box its working but when it will be the Listbox, its giving the
error!

If element.Type = "select-one" Then
Debug.print "List Box"
Else
Call element.Click
Debug.Print "Selecting Save Tool: " & element.ID
Do While IEVNT.Busy: DoEvents: Loop
End If

"Joel" wrote:

I think they fixed a security problem with excel 2000 in excel 2003 which
performed an access test before creating a new file. Try manually creating
the file in the same directory by doing a saveas from the spreadhsheet. You
need to get the permission changed in the directory yoiu are writting to.

"Lalit Chaudhari" wrote:

Hi All,

I have developed a VBA program which will automatically make decisions on
the web page. It is working fine on Windows 2000. But its giving error as
"Permission Denied error 70" on Windows XP and 2003.

Can you please let me know if anybody knows the solution for this?

  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9,101
Default Getting "Permission Denied error 70" on Windows XP and 2003

Send the file as an attahment using your e-mail tool. Don't use the
Dsicussion Group web tools.

"Lalit Chaudhari" wrote:

Hi,
But i am not understanding where i have written "LoadFileDate" function?
Also i am not able to find the option to send the file!
Again i am pasting my code:
For Each element In IEVNT.Document.getElementsByName("savetool")
If element.Type = "select-one" Then
Debug.print "List Box"
Else
Call element.Click
Debug.Print "Selecting Save Tool: " & element.ID
Do While IEVNT.Busy: DoEvents: Loop
End If
Next element

==================================================

"Joel" wrote:

You have a number of problems with the code

first your declaration LoadFileDate deson't match the call.

LoadFileDate(CBTfilesArray)

and

Function LoadFileDate()

I still don't have enough info to solve the problem. e-mail mye the file
and I will look at it

joel dot warburg at itt dot com

"Lalit Chaudhari" wrote:

Below is the code for your reference:

For Each element In IEVNT.Document.getElementsByName("savetool")
If element.Type = "select-one" Then
Debug.print "List Box"
Else
Call element.Click
Debug.Print "Selecting Save Tool: " &
element.ID
Do While IEVNT.Busy: DoEvents: Loop
End If
Next element

"Joel" wrote:

There isn't enough information for me to repeat the problem. I don't know
how element is defined.

"Lalit Chaudhari" wrote:

Thanks for the reply. But i am not writing to anyfile. I am just automating
the web browser to do some steps. I am getting the error on the below first
line. Actually the following code is in the loop. When the item is checkbox
or radio-box its working but when it will be the Listbox, its giving the
error!

If element.Type = "select-one" Then
Debug.print "List Box"
Else
Call element.Click
Debug.Print "Selecting Save Tool: " & element.ID
Do While IEVNT.Busy: DoEvents: Loop
End If

"Joel" wrote:

I think they fixed a security problem with excel 2000 in excel 2003 which
performed an access test before creating a new file. Try manually creating
the file in the same directory by doing a saveas from the spreadhsheet. You
need to get the permission changed in the directory yoiu are writting to.

"Lalit Chaudhari" wrote:

Hi All,

I have developed a VBA program which will automatically make decisions on
the web page. It is working fine on Windows 2000. But its giving error as
"Permission Denied error 70" on Windows XP and 2003.

Can you please let me know if anybody knows the solution for this?

  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default Getting "Permission Denied error 70" on Windows XP and 2003

Can you please let me know your mail id?

"Joel" wrote:

Send the file as an attahment using your e-mail tool. Don't use the
Dsicussion Group web tools.

"Lalit Chaudhari" wrote:

Hi,
But i am not understanding where i have written "LoadFileDate" function?
Also i am not able to find the option to send the file!
Again i am pasting my code:
For Each element In IEVNT.Document.getElementsByName("savetool")
If element.Type = "select-one" Then
Debug.print "List Box"
Else
Call element.Click
Debug.Print "Selecting Save Tool: " & element.ID
Do While IEVNT.Busy: DoEvents: Loop
End If
Next element

==================================================

"Joel" wrote:

You have a number of problems with the code

first your declaration LoadFileDate deson't match the call.

LoadFileDate(CBTfilesArray)

and

Function LoadFileDate()

I still don't have enough info to solve the problem. e-mail mye the file
and I will look at it

joel dot warburg at itt dot com

"Lalit Chaudhari" wrote:

Below is the code for your reference:

For Each element In IEVNT.Document.getElementsByName("savetool")
If element.Type = "select-one" Then
Debug.print "List Box"
Else
Call element.Click
Debug.Print "Selecting Save Tool: " &
element.ID
Do While IEVNT.Busy: DoEvents: Loop
End If
Next element

"Joel" wrote:

There isn't enough information for me to repeat the problem. I don't know
how element is defined.

"Lalit Chaudhari" wrote:

Thanks for the reply. But i am not writing to anyfile. I am just automating
the web browser to do some steps. I am getting the error on the below first
line. Actually the following code is in the loop. When the item is checkbox
or radio-box its working but when it will be the Listbox, its giving the
error!

If element.Type = "select-one" Then
Debug.print "List Box"
Else
Call element.Click
Debug.Print "Selecting Save Tool: " & element.ID
Do While IEVNT.Busy: DoEvents: Loop
End If

"Joel" wrote:

I think they fixed a security problem with excel 2000 in excel 2003 which
performed an access test before creating a new file. Try manually creating
the file in the same directory by doing a saveas from the spreadhsheet. You
need to get the permission changed in the directory yoiu are writting to.

"Lalit Chaudhari" wrote:

Hi All,

I have developed a VBA program which will automatically make decisions on
the web page. It is working fine on Windows 2000. But its giving error as
"Permission Denied error 70" on Windows XP and 2003.

Can you please let me know if anybody knows the solution for this?

  #10   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9,101
Default Getting "Permission Denied error 70" on Windows XP and 2003

Sorry, I did on the previous posting

joel dot warburg at itt dot com

"Lalit Chaudhari" wrote:

Can you please let me know your mail id?

"Joel" wrote:

Send the file as an attahment using your e-mail tool. Don't use the
Dsicussion Group web tools.

"Lalit Chaudhari" wrote:

Hi,
But i am not understanding where i have written "LoadFileDate" function?
Also i am not able to find the option to send the file!
Again i am pasting my code:
For Each element In IEVNT.Document.getElementsByName("savetool")
If element.Type = "select-one" Then
Debug.print "List Box"
Else
Call element.Click
Debug.Print "Selecting Save Tool: " & element.ID
Do While IEVNT.Busy: DoEvents: Loop
End If
Next element

==================================================

"Joel" wrote:

You have a number of problems with the code

first your declaration LoadFileDate deson't match the call.

LoadFileDate(CBTfilesArray)

and

Function LoadFileDate()

I still don't have enough info to solve the problem. e-mail mye the file
and I will look at it

joel dot warburg at itt dot com

"Lalit Chaudhari" wrote:

Below is the code for your reference:

For Each element In IEVNT.Document.getElementsByName("savetool")
If element.Type = "select-one" Then
Debug.print "List Box"
Else
Call element.Click
Debug.Print "Selecting Save Tool: " &
element.ID
Do While IEVNT.Busy: DoEvents: Loop
End If
Next element

"Joel" wrote:

There isn't enough information for me to repeat the problem. I don't know
how element is defined.

"Lalit Chaudhari" wrote:

Thanks for the reply. But i am not writing to anyfile. I am just automating
the web browser to do some steps. I am getting the error on the below first
line. Actually the following code is in the loop. When the item is checkbox
or radio-box its working but when it will be the Listbox, its giving the
error!

If element.Type = "select-one" Then
Debug.print "List Box"
Else
Call element.Click
Debug.Print "Selecting Save Tool: " & element.ID
Do While IEVNT.Busy: DoEvents: Loop
End If

"Joel" wrote:

I think they fixed a security problem with excel 2000 in excel 2003 which
performed an access test before creating a new file. Try manually creating
the file in the same directory by doing a saveas from the spreadhsheet. You
need to get the permission changed in the directory yoiu are writting to.

"Lalit Chaudhari" wrote:

Hi All,

I have developed a VBA program which will automatically make decisions on
the web page. It is working fine on Windows 2000. But its giving error as
"Permission Denied error 70" on Windows XP and 2003.

Can you please let me know if anybody knows the solution for this?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel object "Access denied" error Monte Excel Programming 0 August 27th 07 04:58 PM
Permission denied in CreateObject(Excel.Application") Leo Excel Programming 1 December 15th 05 05:06 PM
Movefile "Permission Denied" Gordon Gecko[_2_] Excel Programming 0 June 9th 05 08:44 PM
Run-Time error "70" Permission Denied Audrey Excel Programming 12 February 4th 05 10:07 PM
Error "Permission denied" when printing Web Browser control from button on userform, Charles Jordan Excel Programming 0 July 8th 04 04:19 PM


All times are GMT +1. The time now is 06:43 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"