VBA max user limitation

VBA max user limitation

Anonymous
Not applicable
249 Views
3 Replies
Message 1 of 4

VBA max user limitation

Anonymous
Not applicable
I have a problem that 20 users can use a .dvb file on my server. But when the 21st user tries to use it they get a Problem in loading dvb file.
Has anybody else come across this problem?
Is this a VBA limitation that is documented somewhere?
Has anybody a solution?

Cheers
David
0 Likes
250 Views
3 Replies
Replies (3)
Message 2 of 4

Anonymous
Not applicable
it's documented in many posts to this ng. don't know if elsewhere
you may want to use google to review how others handled it, basically i
think the solution was keeping the server version as a 'master' and making
local copies as 'working versions' on each machine
depends on how much you're still editing whether that might work but the
google may show other ways...

"davidraft" wrote in message
news:f198c87.-1@WebX.maYIadrTaRb...
> I have a problem that 20 users can use a .dvb file on my server. But when
the 21st user tries to use it they get a Problem in loading dvb file.
> Has anybody else come across this problem?
> Is this a VBA limitation that is documented somewhere?
> Has anybody a solution?
> Cheers
> David
>
0 Likes
Message 3 of 4

Anonymous
Not applicable
I ended up using local option as well.

I check whether a local version is available , if not copy from the
server to the local dir, then run it from local. Updates I handle via
other methods. This has worked well.

Mark Propst wrote:
>
> it's documented in many posts to this ng. don't know if elsewhere
> you may want to use google to review how others handled it, basically i
> think the solution was keeping the server version as a 'master' and making
> local copies as 'working versions' on each machine
> depends on how much you're still editing whether that might work but the
> google may show other ways...
>
> "davidraft" wrote in message
> news:f198c87.-1@WebX.maYIadrTaRb...
> > I have a problem that 20 users can use a .dvb file on my server. But when
> the 21st user tries to use it they get a Problem in loading dvb file.
> > Has anybody else come across this problem?
> > Is this a VBA limitation that is documented somewhere?
> > Has anybody a solution?
> > Cheers
> > David
> >

--

-------------------
Nauman M
CAD Bazaar
0 Likes
Message 4 of 4

Anonymous
Not applicable
Same here - we use a .bat (batch) file in user's start up that automatically
copies the server dvb locally. works great, no problems.

Kevin

"Nauman M" wrote in message
news:3FA6C0DA.BC69BDC5@CadBazaarNoSPAM.com...
> I ended up using local option as well.
>
> I check whether a local version is available , if not copy from the
> server to the local dir, then run it from local. Updates I handle via
> other methods. This has worked well.
>
> Mark Propst wrote:
> >
> > it's documented in many posts to this ng. don't know if elsewhere
> > you may want to use google to review how others handled it, basically i
> > think the solution was keeping the server version as a 'master' and
making
> > local copies as 'working versions' on each machine
> > depends on how much you're still editing whether that might work but the
> > google may show other ways...
> >
> > "davidraft" wrote in message
> > news:f198c87.-1@WebX.maYIadrTaRb...
> > > I have a problem that 20 users can use a .dvb file on my server. But
when
> > the 21st user tries to use it they get a Problem in loading dvb file.
> > > Has anybody else come across this problem?
> > > Is this a VBA limitation that is documented somewhere?
> > > Has anybody a solution?
> > > Cheers
> > > David
> > >
>
> --
>
> -------------------
> Nauman M
> CAD Bazaar
0 Likes