A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Database Design
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

howto - "modularize design" of front-end application ??



 
 
Thread Tools Display Modes
  #1  
Old October 2nd, 2008, 08:16 PM posted to microsoft.public.access.gettingstarted,microsoft.public.access.setupconfig,microsoft.public.access.tablesdbdesign
Bob[_39_]
external usenet poster
 
Posts: 35
Default howto - "modularize design" of front-end application ??

sorry for the cross-postings - not sure where this best fits.
running access 2k, in front/back split configuration. focusing on
front end application.

my application has become quite large, and I would like to split it
into smaller pieces, both for ease of development/maintenance, and end-
user performance.

There are a couple of "sections" to the application which could easily
(from a logical perspective) be "modularized" (ie: there's an import/
export functionality).

So - what I would like to do, is move this functionality into its own
separate mdb/mde file (or mdl [dll-analog].
However - I would like the end user experience to be that when they
click the "import/export" button - it would appear simply as another
window in their already open application window.

Is there some way to "dll-ize" a chunk of this app?

if not - what IS the best way to handle an application that is
becoming very large?

TIA - Bob
  #2  
Old October 2nd, 2008, 08:54 PM posted to microsoft.public.access.gettingstarted,microsoft.public.access.setupconfig,microsoft.public.access.tablesdbdesign
Brian
external usenet poster
 
Posts: 1,396
Default howto - "modularize design" of front-end application ??

Can you define "very large"? How big is the front end in terms of bytes?

If it is getting large because of the natural growth of DB's over time (even
the front end, due to internal temporary storage used by Access), you could
look at automating a compact/repair when the front end closes.

If there are just too many functions in the front end, you might take a look
reorganizing your app so that functions are categorized and split onto menus
- submenus - action forms.

"Bob" wrote:

sorry for the cross-postings - not sure where this best fits.
running access 2k, in front/back split configuration. focusing on
front end application.

my application has become quite large, and I would like to split it
into smaller pieces, both for ease of development/maintenance, and end-
user performance.

There are a couple of "sections" to the application which could easily
(from a logical perspective) be "modularized" (ie: there's an import/
export functionality).

So - what I would like to do, is move this functionality into its own
separate mdb/mde file (or mdl [dll-analog].
However - I would like the end user experience to be that when they
click the "import/export" button - it would appear simply as another
window in their already open application window.

Is there some way to "dll-ize" a chunk of this app?

if not - what IS the best way to handle an application that is
becoming very large?

TIA - Bob

  #3  
Old October 3rd, 2008, 12:12 AM posted to microsoft.public.access.gettingstarted,microsoft.public.access.setupconfig,microsoft.public.access.tablesdbdesign
Bob[_39_]
external usenet poster
 
Posts: 35
Default howto - "modularize design" of front-end application ??

hi Brian;

TX for your reply. very large in terms of the quantity of queries,
and forms.
The actual size of the app is around 5M.

I suppose my biggest concern over this, is oriented toward managing
the app on the dev. side. I think performance issues could probably be
mostly dealt with by migrating the back-end into a sql-server.

There are a vast number of queries (and forms) to try to keep track
of. Which does what for which function and so on.
It would be nice to have those functions which are separat-able in
different files - but I wouldn't want to have to merge multiple files
to produce a final mde each time changes are made.


On Oct 2, 2:54 pm, Brian wrote:
Can you define "very large"? How big is the front end in terms of bytes?

If it is getting large because of the natural growth of DB's over time (even
the front end, due to internal temporary storage used by Access), you could
look at automating a compact/repair when the front end closes.

If there are just too many functions in the front end, you might take a look
reorganizing your app so that functions are categorized and split onto menus
- submenus - action forms.

"Bob" wrote:
sorry for the cross-postings - not sure where this best fits.
running access 2k, in front/back split configuration. focusing on
front end application.


my application has become quite large, and I would like to split it
into smaller pieces, both for ease of development/maintenance, and end-
user performance.


There are a couple of "sections" to the application which could easily
(from a logical perspective) be "modularized" (ie: there's an import/
export functionality).


So - what I would like to do, is move this functionality into its own
separate mdb/mde file (or mdl [dll-analog].
However - I would like the end user experience to be that when they
click the "import/export" button - it would appear simply as another
window in their already open application window.


Is there some way to "dll-ize" a chunk of this app?


if not - what IS the best way to handle an application that is
becoming very large?


TIA - Bob


  #4  
Old October 3rd, 2008, 02:53 AM posted to microsoft.public.access.gettingstarted,microsoft.public.access.setupconfig,microsoft.public.access.tablesdbdesign
Arvin Meyer [MVP][_2_]
external usenet poster
 
Posts: 2,310
Default howto - "modularize design" of front-end application ??

Actually, 5 MB is tiny, almost infinitesimal, for a database. Even 50 MB is
considered small.

I built a large database for a homebuilder consisting of 12 front-end
applications, linked to a single 100+ MB Access/JET database on the server.
A total of 50 users had from 1 to 3 front-end mdb's open at any given time.
I divided by apps by function. The Permitting dept, maintained the
Subdivisions and Lots, and the housing Starts. There was a Bidding
department, a Service Dept., a Purchasing Dept. a Sales Dept. Closing Dept,
etc., etc.

Code common to everyone, or at least multiple applications, was stored in a
Code database which was referenced by the apps that needed it. A total of
about 60 MB in the 12 database apps kept each to between 3 MB and 8 or 9 MB,
and as such each was secure from the others, and loaded and ran much faster
due to their smaller sizes.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com


"Bob" wrote in message
...
hi Brian;

TX for your reply. very large in terms of the quantity of queries,
and forms.
The actual size of the app is around 5M.

I suppose my biggest concern over this, is oriented toward managing
the app on the dev. side. I think performance issues could probably be
mostly dealt with by migrating the back-end into a sql-server.

There are a vast number of queries (and forms) to try to keep track
of. Which does what for which function and so on.
It would be nice to have those functions which are separat-able in
different files - but I wouldn't want to have to merge multiple files
to produce a final mde each time changes are made.


On Oct 2, 2:54 pm, Brian wrote:
Can you define "very large"? How big is the front end in terms of bytes?

If it is getting large because of the natural growth of DB's over time
(even
the front end, due to internal temporary storage used by Access), you
could
look at automating a compact/repair when the front end closes.

If there are just too many functions in the front end, you might take a
look
reorganizing your app so that functions are categorized and split onto
menus
- submenus - action forms.

"Bob" wrote:
sorry for the cross-postings - not sure where this best fits.
running access 2k, in front/back split configuration. focusing on
front end application.


my application has become quite large, and I would like to split it
into smaller pieces, both for ease of development/maintenance, and end-
user performance.


There are a couple of "sections" to the application which could easily
(from a logical perspective) be "modularized" (ie: there's an import/
export functionality).


So - what I would like to do, is move this functionality into its own
separate mdb/mde file (or mdl [dll-analog].
However - I would like the end user experience to be that when they
click the "import/export" button - it would appear simply as another
window in their already open application window.


Is there some way to "dll-ize" a chunk of this app?


if not - what IS the best way to handle an application that is
becoming very large?


TIA - Bob




  #5  
Old October 3rd, 2008, 05:36 AM posted to microsoft.public.access.gettingstarted,microsoft.public.access.setupconfig,microsoft.public.access.tablesdbdesign
Brian
external usenet poster
 
Posts: 1,396
Default howto - "modularize design" of front-end application ??

Following up on your response & Arvin's, I checked one of my apps that has
265 queries in it. I don't know if that is a lot or not compared to yours,
but for what it is worth, here is my opinion:

1. I would probably separate the front end apps by department or general
user function, rather than using different apps to call each other. That
could involve a lot of keeping track of different apps and how they relate
and extra code for relatively little return. Instead, I would tend to tie
each app just to the common back end.
2. Developing and following a strict naming convention within the app can
help separate objects (queries, forms, reports, etc) for the developer. For
example, all accounting-related forms can be prefaced with "Acct", while all
operations-related forms could be prefaced with "Ops"; the same is true of
queries. I try to use logical names for queries; although the user will never
see these names, it keeps the developer (me) on track. A query named
"LookupContractBalance" is probably preferable to Query25 or ContBalLkup, at
least as far as helping me find my own stuff.
3. Setting up a multi-level menu (either on a form or via a menu bar) can
help separate functions into logical groups. A button or menu bar item for
accounting functions that brings up a submenu of AR, AP, and Payroll, that in
turn each have a set of related forms is an example.
4. If you post a simple question about Access performance, you will
undoubtedly get some the links to some of the MVP's sites that deal with
Access efficiences - such things as keeping a connection to the back end open
continuously by making your main menu/form a bound form - rather than opening
& closing DB connections every time you open a form. This can have a huge
impact on performance. There are many other factors that will likely allow
you to stay within a Jet connection an not feel forced to a SQL back end
right away.
5. One of the challenges is taking existing naming conventions and
standardizing them. If you have not already done so, obtain a copy of Find
and Replace by Rick Fisher (www.rickworld.com). This tool that allows one to
search (and replace) strings anywehre in an app (form/query names, code
module content, query SQL statements, etc)revolutionized the way I develop
and saved me countless hours trying to find and replace strings and rename
objects in my apps.

"Bob" wrote:

hi Brian;

TX for your reply. very large in terms of the quantity of queries,
and forms.
The actual size of the app is around 5M.

I suppose my biggest concern over this, is oriented toward managing
the app on the dev. side. I think performance issues could probably be
mostly dealt with by migrating the back-end into a sql-server.

There are a vast number of queries (and forms) to try to keep track
of. Which does what for which function and so on.
It would be nice to have those functions which are separat-able in
different files - but I wouldn't want to have to merge multiple files
to produce a final mde each time changes are made.


On Oct 2, 2:54 pm, Brian wrote:
Can you define "very large"? How big is the front end in terms of bytes?

If it is getting large because of the natural growth of DB's over time (even
the front end, due to internal temporary storage used by Access), you could
look at automating a compact/repair when the front end closes.

If there are just too many functions in the front end, you might take a look
reorganizing your app so that functions are categorized and split onto menus
- submenus - action forms.

"Bob" wrote:
sorry for the cross-postings - not sure where this best fits.
running access 2k, in front/back split configuration. focusing on
front end application.


my application has become quite large, and I would like to split it
into smaller pieces, both for ease of development/maintenance, and end-
user performance.


There are a couple of "sections" to the application which could easily
(from a logical perspective) be "modularized" (ie: there's an import/
export functionality).


So - what I would like to do, is move this functionality into its own
separate mdb/mde file (or mdl [dll-analog].
However - I would like the end user experience to be that when they
click the "import/export" button - it would appear simply as another
window in their already open application window.


Is there some way to "dll-ize" a chunk of this app?


if not - what IS the best way to handle an application that is
becoming very large?


TIA - Bob



  #6  
Old October 3rd, 2008, 11:20 PM posted to microsoft.public.access.gettingstarted,microsoft.public.access.setupconfig,microsoft.public.access.tablesdbdesign
Bob[_39_]
external usenet poster
 
Posts: 35
Default howto - "modularize design" of front-end application ??

hi Arvin!
TYVM for your reply...

So now I'm curious about your apps...
did you distribute them to the users as mde's ?
assuming you did - how did you link to your common code database?
is the common code DB an mde or mdb? assuming it must be an mdb...
cause not sure how else you'd be able to get @ the code ... ??

TIA!

On Oct 2, 8:53 pm, "Arvin Meyer [MVP]" wrote:
Actually, 5 MB is tiny, almost infinitesimal, for a database. Even 50 MB is
considered small.

I built a large database for a homebuilder consisting of 12 front-end
applications, linked to a single 100+ MB Access/JET database on the server.
A total of 50 users had from 1 to 3 front-end mdb's open at any given time.
I divided by apps by function. The Permitting dept, maintained the
Subdivisions and Lots, and the housing Starts. There was a Bidding
department, a Service Dept., a Purchasing Dept. a Sales Dept. Closing Dept,
etc., etc.

Code common to everyone, or at least multiple applications, was stored in a
Code database which was referenced by the apps that needed it. A total of
about 60 MB in the 12 database apps kept each to between 3 MB and 8 or 9 MB,
and as such each was secure from the others, and loaded and ran much faster
due to their smaller sizes.
--
Arvin Meyer, MCP, MVPhttp://www.datastrat.comhttp://www.mvps.org/accesshttp://www.accessmvp.com

"Bob" wrote in message

...

hi Brian;


TX for your reply. very large in terms of the quantity of queries,
and forms.
The actual size of the app is around 5M.


I suppose my biggest concern over this, is oriented toward managing
the app on the dev. side. I think performance issues could probably be
mostly dealt with by migrating the back-end into a sql-server.


There are a vast number of queries (and forms) to try to keep track
of. Which does what for which function and so on.
It would be nice to have those functions which are separat-able in
different files - but I wouldn't want to have to merge multiple files
to produce a final mde each time changes are made.


On Oct 2, 2:54 pm, Brian wrote:
Can you define "very large"? How big is the front end in terms of bytes?


If it is getting large because of the natural growth of DB's over time
(even
the front end, due to internal temporary storage used by Access), you
could
look at automating a compact/repair when the front end closes.


If there are just too many functions in the front end, you might take a
look
reorganizing your app so that functions are categorized and split onto
menus
- submenus - action forms.


"Bob" wrote:
sorry for the cross-postings - not sure where this best fits.
running access 2k, in front/back split configuration. focusing on
front end application.


my application has become quite large, and I would like to split it
into smaller pieces, both for ease of development/maintenance, and end-
user performance.


There are a couple of "sections" to the application which could easily
(from a logical perspective) be "modularized" (ie: there's an import/
export functionality).


So - what I would like to do, is move this functionality into its own
separate mdb/mde file (or mdl [dll-analog].
However - I would like the end user experience to be that when they
click the "import/export" button - it would appear simply as another
window in their already open application window.


Is there some way to "dll-ize" a chunk of this app?


if not - what IS the best way to handle an application that is
becoming very large?


TIA - Bob


  #7  
Old October 3rd, 2008, 11:30 PM posted to microsoft.public.access.gettingstarted,microsoft.public.access.setupconfig,microsoft.public.access.tablesdbdesign
Bob[_39_]
external usenet poster
 
Posts: 35
Default howto - "modularize design" of front-end application ??

hi Brian!

TX again for your input...
I suppose I could separate the functions into separate applications..
but where Arvin is apparently having success running multiple
instances of access - that scares the crap out of me ;-) granted that
not too many of my users "cross-over" multiple function categogies,
but there are a few...

I do, in fact, already follow a naming convention which does help to
separate things... but there's just soooo much - I'd really like to
isolate into separate files . I also have a menu that works well in
the user experience.

As I said earlier, the perforance piece isn't my primary concern at
the moment; but I'm starting to think down that path. I'll bet I'm not
maintaining an open connection to the back end... I'll look into that.

The interesting part of this, is that I originally tried doing
something similiar to what Arvin described (a common database).
Everything worked wonderfully until I tried to run it as an mde! Then
it all fell apart, and I abandoned that idea. Maybe it's worth re-
visiting, if there's a work-around...

TX again!

On Oct 2, 11:36 pm, Brian wrote:
Following up on your response & Arvin's, I checked one of my apps that has
265 queries in it. I don't know if that is a lot or not compared to yours,
but for what it is worth, here is my opinion:

1. I would probably separate the front end apps by department or general
user function, rather than using different apps to call each other. That
could involve a lot of keeping track of different apps and how they relate
and extra code for relatively little return. Instead, I would tend to tie
each app just to the common back end.
2. Developing and following a strict naming convention within the app can
help separate objects (queries, forms, reports, etc) for the developer. For
example, all accounting-related forms can be prefaced with "Acct", while all
operations-related forms could be prefaced with "Ops"; the same is true of
queries. I try to use logical names for queries; although the user will never
see these names, it keeps the developer (me) on track. A query named
"LookupContractBalance" is probably preferable to Query25 or ContBalLkup, at
least as far as helping me find my own stuff.
3. Setting up a multi-level menu (either on a form or via a menu bar) can
help separate functions into logical groups. A button or menu bar item for
accounting functions that brings up a submenu of AR, AP, and Payroll, that in
turn each have a set of related forms is an example.
4. If you post a simple question about Access performance, you will
undoubtedly get some the links to some of the MVP's sites that deal with
Access efficiences - such things as keeping a connection to the back end open
continuously by making your main menu/form a bound form - rather than opening
& closing DB connections every time you open a form. This can have a huge
impact on performance. There are many other factors that will likely allow
you to stay within a Jet connection an not feel forced to a SQL back end
right away.
5. One of the challenges is taking existing naming conventions and
standardizing them. If you have not already done so, obtain a copy of Find
and Replace by Rick Fisher (www.rickworld.com). This tool that allows one to
search (and replace) strings anywehre in an app (form/query names, code
module content, query SQL statements, etc)revolutionized the way I develop
and saved me countless hours trying to find and replace strings and rename
objects in my apps.

"Bob" wrote:
hi Brian;


TX for your reply. very large in terms of the quantity of queries,
and forms.
The actual size of the app is around 5M.


I suppose my biggest concern over this, is oriented toward managing
the app on the dev. side. I think performance issues could probably be
mostly dealt with by migrating the back-end into a sql-server.


There are a vast number of queries (and forms) to try to keep track
of. Which does what for which function and so on.
It would be nice to have those functions which are separat-able in
different files - but I wouldn't want to have to merge multiple files
to produce a final mde each time changes are made.


On Oct 2, 2:54 pm, Brian wrote:
Can you define "very large"? How big is the front end in terms of bytes?


If it is getting large because of the natural growth of DB's over time (even
the front end, due to internal temporary storage used by Access), you could
look at automating a compact/repair when the front end closes.


If there are just too many functions in the front end, you might take a look
reorganizing your app so that functions are categorized and split onto menus
- submenus - action forms.


"Bob" wrote:
sorry for the cross-postings - not sure where this best fits.
running access 2k, in front/back split configuration. focusing on
front end application.


my application has become quite large, and I would like to split it
into smaller pieces, both for ease of development/maintenance, and end-
user performance.


There are a couple of "sections" to the application which could easily
(from a logical perspective) be "modularized" (ie: there's an import/
export functionality).


So - what I would like to do, is move this functionality into its own
separate mdb/mde file (or mdl [dll-analog].
However - I would like the end user experience to be that when they
click the "import/export" button - it would appear simply as another
window in their already open application window.


Is there some way to "dll-ize" a chunk of this app?


if not - what IS the best way to handle an application that is
becoming very large?


TIA - Bob


  #8  
Old October 4th, 2008, 12:44 PM posted to microsoft.public.access.gettingstarted,microsoft.public.access.setupconfig,microsoft.public.access.tablesdbdesign
external usenet poster
 
Posts: n/a
Default howto - "modularize design" of front-end application ??

You can 'reference' an mdb or mde by adding it to your
references.

Code in a library mdb/mde must use the word CodeDB
instead of CurrentDB.

DoCmd and DLookup actions in a library mdb/mde refer
to the CurrentDB, not the CodeDB.

Queries Forms and Reports in the library mdb/mde refer to
the CodeDB

So the library mdb/mde must have links to the BE for queries
forms and reports to work,

And the CurrentDB must have links to the BE for DoCmd
to work. I just don't use DoCmd and DLookup in the library.

There is no direct way to open Forms and Reports in the
library, unless you use Access 2000 or earlier. Instead,
you need to have a function in the library to open Forms
and Reports. You can call functions in the library. You can
call functions from forms or macros or menus.

(david)


"Bob" wrote in message
...
sorry for the cross-postings - not sure where this best fits.
running access 2k, in front/back split configuration. focusing on
front end application.

my application has become quite large, and I would like to split it
into smaller pieces, both for ease of development/maintenance, and end-
user performance.

There are a couple of "sections" to the application which could easily
(from a logical perspective) be "modularized" (ie: there's an import/
export functionality).

So - what I would like to do, is move this functionality into its own
separate mdb/mde file (or mdl [dll-analog].
However - I would like the end user experience to be that when they
click the "import/export" button - it would appear simply as another
window in their already open application window.

Is there some way to "dll-ize" a chunk of this app?

if not - what IS the best way to handle an application that is
becoming very large?

TIA - Bob



  #9  
Old October 5th, 2008, 02:43 AM posted to microsoft.public.access.gettingstarted,microsoft.public.access.setupconfig,microsoft.public.access.tablesdbdesign
Arvin Meyer [MVP][_2_]
external usenet poster
 
Posts: 2,310
Default howto - "modularize design" of front-end application ??

I rarely use MDEs because most of my applications belong to the companies I
work for, and they are free to use them as they wish, except for reselling
them as an app. The last MDE that I built was years ago, and I had changed
computers several times and no longer had the MDB to work on it. That cured
me. I also prefer not to use runtimes either. I prefer my clients to have
full versions. Unless they don't mind paying me to custom build all the
goodies that don't work in a runtimes, it is usually cheaper to use the full
version. Cheaper for support too. The common code database is custom built
for each major application where there are multiple applications. It doesn't
matter whether it is an MDB or MDE, since you link to it by setting a
reference from the app. In a code window: Tools References then change
the filetype to MDB/MDE and navigate to the code database.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com


"Bob" wrote in message
...
hi Arvin!
TYVM for your reply...

So now I'm curious about your apps...
did you distribute them to the users as mde's ?
assuming you did - how did you link to your common code database?
is the common code DB an mde or mdb? assuming it must be an mdb...
cause not sure how else you'd be able to get @ the code ... ??

TIA!

On Oct 2, 8:53 pm, "Arvin Meyer [MVP]" wrote:
Actually, 5 MB is tiny, almost infinitesimal, for a database. Even 50 MB
is
considered small.

I built a large database for a homebuilder consisting of 12 front-end
applications, linked to a single 100+ MB Access/JET database on the
server.
A total of 50 users had from 1 to 3 front-end mdb's open at any given
time.
I divided by apps by function. The Permitting dept, maintained the
Subdivisions and Lots, and the housing Starts. There was a Bidding
department, a Service Dept., a Purchasing Dept. a Sales Dept. Closing
Dept,
etc., etc.

Code common to everyone, or at least multiple applications, was stored in
a
Code database which was referenced by the apps that needed it. A total of
about 60 MB in the 12 database apps kept each to between 3 MB and 8 or 9
MB,
and as such each was secure from the others, and loaded and ran much
faster
due to their smaller sizes.
--
Arvin Meyer, MCP,
MVPhttp://www.datastrat.comhttp://www.mvps.org/accesshttp://www.accessmvp.com

"Bob" wrote in message

...

hi Brian;


TX for your reply. very large in terms of the quantity of queries,
and forms.
The actual size of the app is around 5M.


I suppose my biggest concern over this, is oriented toward managing
the app on the dev. side. I think performance issues could probably be
mostly dealt with by migrating the back-end into a sql-server.


There are a vast number of queries (and forms) to try to keep track
of. Which does what for which function and so on.
It would be nice to have those functions which are separat-able in
different files - but I wouldn't want to have to merge multiple files
to produce a final mde each time changes are made.


On Oct 2, 2:54 pm, Brian wrote:
Can you define "very large"? How big is the front end in terms of
bytes?


If it is getting large because of the natural growth of DB's over time
(even
the front end, due to internal temporary storage used by Access), you
could
look at automating a compact/repair when the front end closes.


If there are just too many functions in the front end, you might take
a
look
reorganizing your app so that functions are categorized and split onto
menus
- submenus - action forms.


"Bob" wrote:
sorry for the cross-postings - not sure where this best fits.
running access 2k, in front/back split configuration. focusing on
front end application.


my application has become quite large, and I would like to split it
into smaller pieces, both for ease of development/maintenance, and
end-
user performance.


There are a couple of "sections" to the application which could
easily
(from a logical perspective) be "modularized" (ie: there's an
import/
export functionality).


So - what I would like to do, is move this functionality into its
own
separate mdb/mde file (or mdl [dll-analog].
However - I would like the end user experience to be that when they
click the "import/export" button - it would appear simply as another
window in their already open application window.


Is there some way to "dll-ize" a chunk of this app?


if not - what IS the best way to handle an application that is
becoming very large?


TIA - Bob




  #10  
Old October 5th, 2008, 04:16 AM posted to microsoft.public.access.gettingstarted,microsoft.public.access.setupconfig,microsoft.public.access.tablesdbdesign
Arvin Meyer [MVP][_2_]
external usenet poster
 
Posts: 2,310
Default howto - "modularize design" of front-end application ??


"Bob" wrote in message
...
hi Brian!

TX again for your input...
I suppose I could separate the functions into separate applications..
but where Arvin is apparently having success running multiple
instances of access - that scares the crap out of me ;-) granted that
not too many of my users "cross-over" multiple function categogies,
but there are a few...


We averaged about 65 open connections for the 50 users, but we occasionally
hit a high of 75 connections. At least 10 users had 2 open databases, and 5
others typically had 3 open. To scare you even more, 8 of the connections
were from an asp front-end running over the corporate intranet, and 6 more
were terminal services connections, some of which often had multiple
databases open at the same time.

The last corruption was in 2003 when the database corrupted 5 weeks in a row
due to a faulty WiFi card which I told them to not use in the first place.
Never use a WiFi card on anything but a Terminal Server connection. The only
other corruption we ever had was the year before due to a bug in
autonumbers. No data was ever lost.

A well designed data structure, quality hardware, and well trained and
conscientious users are all that's required for Access stability.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


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


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