View Single Post
  #4   Report Post  
Posted to microsoft.public.vb.general.discussion,microsoft.public.excel.programming
Mark Yudkin Mark Yudkin is offline
external usenet poster
 
Posts: 1
Default Many users adding to one workbook?

Excel is not designed to support this sort of application, and coding VB6
around it won't resolve this. From what you say about not benig a
programmer, you'd probably be better off with a non-programming solution.

1) Access is the simplest tool and the cheapest (yes I did see your post).

2) The Office Web Components (comes with Office) will give you a better
shared front-end.

3) If you have W2K3, download the latest Sharepoint services and use that
for a web-based solution. Otherwise you may have to try interfacing with SQL
Server 2005 / Express via ADO.


"Ed" wrote in message
ups.com...
We have about 35+ people who need to enter individual information in a
master spreadsheet. Admin wants the individuals to see only their own
info, but Admin needs to be able to see everything. After presenting
this on just the Excel.Programming NG and then going back with more
ideas, it looks like we might want to try wrapping an Excel workbook
inside a VB6 program.

I'm thinking that when the user opens the VB program, it will ask for
his/her name and a password, reads that user's info from the Master
into a new Excel workbook that opens on the user's computer across the
network, lets the user make changes, then on close writes the changed
info back into the Master. The user never touches the Master and sees
no one else's info. The Master Excel workbook, though, is available
to Admin.

Some questions:

(1) I've never done anything across a network before. How difficult
will it be in a Windows XP environment to put a new workbook with this
info on the user's computer (vice just having it open on the server)?

(2) Is it difficult to have VB detect when the Master wb is already
open and tell the user to come back later?

Thanks.
Ed