Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Move or Copy file

More specifically, write permissions to that directory.

--
Regards,
Tom Ogilvy

"Tom Ogilvy" wrote in message
...
Look at the users' write permissions to that drive.

--
Regards,
Tom Ogilvy


"Michael Bond" wrote in message
...
Hi everyone.

My problem....

I create a template file on a network directory. All users
have read and write access to the directory. Users are
required to enter data on the file. The file contains a
button with code intended to save it back into the same
directory using the contents of a completed cell as the
new file name. The code was created in Excel 2000.

When some users click the button the code behaves exactly
as expected.
When other users click the button it creates two files in
the directory. One named as expected and the second named
randomly with no file extension (the name looks a bit like
the "restore" files you get when Excel crashes during
operation)
And finally a third group of users get only the randomly
named file.

The code itself is not in any way complex :

Dim NewName as String
NewName = cells(1,2)
ActiveWorkbook.SaveAs FileName:="S:\NameDirectory" &
NewName

We've looked at users configurations. True to say they are
all using different Op systems (NT4, Win 2000, Office2000,
Office97 in any combination.). Some are PowerUsers some
are not.....but we have failed to find a common cause. One
PowerUser with Win2000 SP3 and Office2000 SP2 works and
another with exact same spec does not.

First question....has anyone had a similar problem...

Second question...if I changed code to save to the users
local drive can anyone help with code to move/copy it from
there to the network directory....(we've tested and all
can save as required on to their local drive....so my
thought is this will be a reasonable work-around). At the
moment our guess is that it has something to do with the
users access rights but we are struggling to find the
problem so I need a quick fix while we investigate
further.....there are over 40 different users!

Any help would be much appreciated.

Hope I have provided enough info to explain the problem

Thanks and regards

Michael Bond


Other users create





  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default Move or Copy file

Tom

camped-out on my Tech Support doorstep at the start of
work today. You wont be surprised to learn that the
specific write permission were slightly different with
some users. While all had Read, Write and Execute, only
some had the "modify" option ticked.

Where "modify" was available all worked ok. Where "modify"
was not available and user was Win2000 we got the double
file saved and where "modify" was not available and user
was NT4 we only got the file with the random name.

Thanks very much for pointing me in the right direction
and my lesson learned is...."what the Tech Support say may
not always be the full story"....erm...hope you're not
Tech Support.

Regards

Michael Bond
-----Original Message-----
More specifically, write permissions to that directory.

--
Regards,
Tom Ogilvy

"Tom Ogilvy" wrote in message
...
Look at the users' write permissions to that drive.

--
Regards,
Tom Ogilvy


"Michael Bond" wrote in

message
...
Hi everyone.

My problem....

I create a template file on a network directory. All

users
have read and write access to the directory. Users are
required to enter data on the file. The file contains

a
button with code intended to save it back into the

same
directory using the contents of a completed cell as

the
new file name. The code was created in Excel 2000.

When some users click the button the code behaves

exactly
as expected.
When other users click the button it creates two

files in
the directory. One named as expected and the second

named
randomly with no file extension (the name looks a bit

like
the "restore" files you get when Excel crashes during
operation)
And finally a third group of users get only the

randomly
named file.

The code itself is not in any way complex :

Dim NewName as String
NewName = cells(1,2)
ActiveWorkbook.SaveAs FileName:="S:\NameDirectory" &
NewName

We've looked at users configurations. True to say

they are
all using different Op systems (NT4, Win 2000,

Office2000,
Office97 in any combination.). Some are PowerUsers

some
are not.....but we have failed to find a common

cause. One
PowerUser with Win2000 SP3 and Office2000 SP2 works

and
another with exact same spec does not.

First question....has anyone had a similar problem...

Second question...if I changed code to save to the

users
local drive can anyone help with code to move/copy it

from
there to the network directory....(we've tested and

all
can save as required on to their local drive....so my
thought is this will be a reasonable work-around). At

the
moment our guess is that it has something to do with

the
users access rights but we are struggling to find the
problem so I need a quick fix while we investigate
further.....there are over 40 different users!

Any help would be much appreciated.

Hope I have provided enough info to explain the

problem

Thanks and regards

Michael Bond


Other users create





.

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Move or Copy file

"....erm...hope you're not
Tech Support.


Not me, I can only aspire to a position of such lofty knowledge.

Thanks for sharing the problem and solution.

Regards,
Tom Ogilvy


Michael Bond wrote in message
...
Tom

camped-out on my Tech Support doorstep at the start of
work today. You wont be surprised to learn that the
specific write permission were slightly different with
some users. While all had Read, Write and Execute, only
some had the "modify" option ticked.

Where "modify" was available all worked ok. Where "modify"
was not available and user was Win2000 we got the double
file saved and where "modify" was not available and user
was NT4 we only got the file with the random name.

Thanks very much for pointing me in the right direction
and my lesson learned is...."what the Tech Support say may
not always be the full story"....erm...hope you're not
Tech Support.

Regards

Michael Bond
-----Original Message-----
More specifically, write permissions to that directory.

--
Regards,
Tom Ogilvy

"Tom Ogilvy" wrote in message
...
Look at the users' write permissions to that drive.

--
Regards,
Tom Ogilvy


"Michael Bond" wrote in

message
...
Hi everyone.

My problem....

I create a template file on a network directory. All

users
have read and write access to the directory. Users are
required to enter data on the file. The file contains

a
button with code intended to save it back into the

same
directory using the contents of a completed cell as

the
new file name. The code was created in Excel 2000.

When some users click the button the code behaves

exactly
as expected.
When other users click the button it creates two

files in
the directory. One named as expected and the second

named
randomly with no file extension (the name looks a bit

like
the "restore" files you get when Excel crashes during
operation)
And finally a third group of users get only the

randomly
named file.

The code itself is not in any way complex :

Dim NewName as String
NewName = cells(1,2)
ActiveWorkbook.SaveAs FileName:="S:\NameDirectory" &
NewName

We've looked at users configurations. True to say

they are
all using different Op systems (NT4, Win 2000,

Office2000,
Office97 in any combination.). Some are PowerUsers

some
are not.....but we have failed to find a common

cause. One
PowerUser with Win2000 SP3 and Office2000 SP2 works

and
another with exact same spec does not.

First question....has anyone had a similar problem...

Second question...if I changed code to save to the

users
local drive can anyone help with code to move/copy it

from
there to the network directory....(we've tested and

all
can save as required on to their local drive....so my
thought is this will be a reasonable work-around). At

the
moment our guess is that it has something to do with

the
users access rights but we are struggling to find the
problem so I need a quick fix while we investigate
further.....there are over 40 different users!

Any help would be much appreciated.

Hope I have provided enough info to explain the

problem

Thanks and regards

Michael Bond


Other users create




.



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
move or copy sheets doesn't copy format ColinX Excel Worksheet Functions 1 May 14th 08 10:07 PM
Can I Move replace instead of Move copy [email protected] Excel Discussion (Misc queries) 2 January 9th 08 10:25 PM
Move/Copy or Copy/Insert worksheet? kjk Excel Discussion (Misc queries) 0 December 15th 06 02:40 PM
Move or Copy helen Excel Discussion (Misc queries) 2 November 8th 06 08:15 PM
Move or copy sheet causing the creation of an htm file drlogarithm Excel Discussion (Misc queries) 0 November 7th 05 04:59 PM


All times are GMT +1. The time now is 04:21 PM.

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

About Us

"It's about Microsoft Excel"