473,408 Members | 1,857 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,408 software developers and data experts.

running out of resources

I am working on an old database that is to be expanded.
It is going from a 1 time data set to 9.
So it has more tables and forms and subforms.
the problem is once I added 3 more sets of forms I get
can not open any more tables.
(no more tables are being used than before its just a ton of sub forms
tied to those tables)

Right now I have a tabctl that has tabs for each date

then another tabctl that displays the tabs based on the previous
tabctl value.

Is there a way of breaking down this big tabctl with 48 tabs an have
6 tabs on each control and only those are open and visible to try and
cut down on the resource usage.

Just turning on and off the visible or enabled won't work since they
are opened on database load and will use of the resources anyway.

I need to have 6 of the subforms open and loaded at a time based on
what is selected on the main ctltab.

So main form with tabctl(1-8)
click 1 and either a form with the 6 tabs and forms comes up.

us a subform or another tabctl or ???

thanks for any ideas I have run out of ideas

Mar 6 '07 #1
4 2242
On Mar 6, 12:05 pm, sparks <jstal...@swbell.netwrote:
I am working on an old database that is to be expanded.
It is going from a 1 time data set to 9.
So it has more tables and forms and subforms.
the problem is once I added 3 more sets of forms I get
can not open any more tables.
(no more tables are being used than before its just a ton of sub forms
tied to those tables)

Right now I have a tabctl that has tabs for each date

then another tabctl that displays the tabs based on the previous
tabctl value.

Is there a way of breaking down this big tabctl with 48 tabs an have
6 tabs on each control and only those are open and visible to try and
cut down on the resource usage.

Just turning on and off the visible or enabled won't work since they
are opened on database load and will use of the resources anyway.

I need to have 6 of the subforms open and loaded at a time based on
what is selected on the main ctltab.

So main form with tabctl(1-8)
click 1 and either a form with the 6 tabs and forms comes up.

us a subform or another tabctl or ???

thanks for any ideas I have run out of ideas
Are all the tabs by date the same subform just named differently to
show a specific (set of) record(s)? If so, would it not be easier to
filter one subform by date, that to repeat it numerous times?

Mar 7 '07 #2
On Mar 6, 12:05 pm, sparks <jstal...@swbell.netwrote:
I am working on an old database that is to be expanded.
It is going from a 1 time data set to 9.
So it has more tables and forms and subforms.
the problem is once I added 3 more sets of forms I get
can not open any more tables.
(no more tables are being used than before its just a ton of sub forms
tied to those tables)

Right now I have a tabctl that has tabs for each date

then another tabctl that displays the tabs based on the previous
tabctl value.

Is there a way of breaking down this big tabctl with 48 tabs an have
6 tabs on each control and only those are open and visible to try and
cut down on the resource usage.

Just turning on and off the visible or enabled won't work since they
are opened on database load and will use of the resources anyway.

I need to have 6 of the subforms open and loaded at a time based on
what is selected on the main ctltab.

So main form with tabctl(1-8)
click 1 and either a form with the 6 tabs and forms comes up.

us a subform or another tabctl or ???

thanks for any ideas I have run out of ideas
Are all the tabs by date the same subform just named differently to
show a specific (set of) record(s)? If so, would it not be easier to
filter one subform by date, than to repeat it numerous times?

Mar 7 '07 #3
Each of these subforms has numerous subforms on it as well.
It ended up that each visit had 6 tabs and each of these had a subform
that contained from 1 to 24 subforms on each one.
I finally just gave up and made an unbound form.
based on what the selection was on the tab I set the SourceObject of
that form to a form that just had the tabs and subforms for one
particular visit.. It was not fun but now it works.
Now all I have to do is figure out how to get to a subform on this in
code.
On 6 Mar 2007 16:12:45 -0800, "storrboy" <st******@sympatico.ca>
wrote:
>On Mar 6, 12:05 pm, sparks <jstal...@swbell.netwrote:
>I am working on an old database that is to be expanded.
It is going from a 1 time data set to 9.
So it has more tables and forms and subforms.
the problem is once I added 3 more sets of forms I get
can not open any more tables.
(no more tables are being used than before its just a ton of sub forms
tied to those tables)

Right now I have a tabctl that has tabs for each date

then another tabctl that displays the tabs based on the previous
tabctl value.

Is there a way of breaking down this big tabctl with 48 tabs an have
6 tabs on each control and only those are open and visible to try and
cut down on the resource usage.

Just turning on and off the visible or enabled won't work since they
are opened on database load and will use of the resources anyway.

I need to have 6 of the subforms open and loaded at a time based on
what is selected on the main ctltab.

So main form with tabctl(1-8)
click 1 and either a form with the 6 tabs and forms comes up.

us a subform or another tabctl or ???

thanks for any ideas I have run out of ideas

Are all the tabs by date the same subform just named differently to
show a specific (set of) record(s)? If so, would it not be easier to
filter one subform by date, than to repeat it numerous times?
Mar 8 '07 #4
Good relational database design principles can often overcome problems
similar to yours. It is entirely possible that, had you precisely and
concisely described the data / information you are dealing with, and the
business requirements of the application, someone could have suggested an
approach that didn't require such a complex interface to deal with the
business issue.

It is almost never _necessary_ to go to unbound forms to deal with business
issues, if the requirements and data have been carefully analyzed, and a
good relational design applied.

I can, without even seeing your application, tell you that the kind of
form/window structure you describe is NOT a user-friendly, easy-to-use
interface. On rare occasions, a very complex UI may be justified, but
"rare" is the operative word.

Larry Linson
Microsoft Access MVP
"sparks" <js******@swbell.netwrote in message
news:ef********************************@4ax.com...
Each of these subforms has numerous subforms on it as well.
It ended up that each visit had 6 tabs and each of these had a subform
that contained from 1 to 24 subforms on each one.
I finally just gave up and made an unbound form.
based on what the selection was on the tab I set the SourceObject of
that form to a form that just had the tabs and subforms for one
particular visit.. It was not fun but now it works.
Now all I have to do is figure out how to get to a subform on this in
code.
On 6 Mar 2007 16:12:45 -0800, "storrboy" <st******@sympatico.ca>
wrote:
>>On Mar 6, 12:05 pm, sparks <jstal...@swbell.netwrote:
>>I am working on an old database that is to be expanded.
It is going from a 1 time data set to 9.
So it has more tables and forms and subforms.
the problem is once I added 3 more sets of forms I get
can not open any more tables.
(no more tables are being used than before its just a ton of sub forms
tied to those tables)

Right now I have a tabctl that has tabs for each date

then another tabctl that displays the tabs based on the previous
tabctl value.

Is there a way of breaking down this big tabctl with 48 tabs an have
6 tabs on each control and only those are open and visible to try and
cut down on the resource usage.

Just turning on and off the visible or enabled won't work since they
are opened on database load and will use of the resources anyway.

I need to have 6 of the subforms open and loaded at a time based on
what is selected on the main ctltab.

So main form with tabctl(1-8)
click 1 and either a form with the 6 tabs and forms comes up.

us a subform or another tabctl or ???

thanks for any ideas I have run out of ideas

Are all the tabs by date the same subform just named differently to
show a specific (set of) record(s)? If so, would it not be easier to
filter one subform by date, than to repeat it numerous times?

Mar 8 '07 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Jeremy | last post by:
Hi, I am having a problem running an sql stored procedure with ADO/ASP. If I hard code a select statement, the code works, but when I try to use a stored procedure it bombs. Here is my code: ...
17
by: Larry Woods | last post by:
I have a server page that has served an HTML page with a "Cancel" button on it, BUT this server page has not completed and is running a 15-30 second process before it completes. I want the browser...
1
by: hananiel | last post by:
Hello: We have a a two tier application connecting to sql server through remoting. The business objects are single call objects. We are opening and closing connections using ADO.NET command...
7
by: Rob | last post by:
I am an Access developer and have done many Access databases in the standard Front-end on the workstations, backend on the server (over a LAN) but have never worked with Access over Citrix, though...
3
by: Joshua Russell | last post by:
Hi, Both the methods below open up a windows form called MasterForm. However, one works better than the other. Method 1 opens the form correctly but I don't have any reference to the instance of...
1
by: Jesper | last post by:
Hi, I am experiencing some problems running a .net exe placed on a network drive. File IO operations and access to reg db results in access denied exceptions. If I run the same program from a...
4
by: tshad | last post by:
What would be a good way to check programmatically whether a service was running? We have a service that dies periodically and I need to check to see if this service is running. I know how to...
1
by: walterbyrd | last post by:
I understand that Python has them, but PHP doesn't. I think that is because mod_php is built into apache, but mod_python is not usually in apache. If mod_python was built into apache, would...
4
by: commander_coder | last post by:
Hello, I write a lot of CGI scripts, in Python of course. Now I need to convert some to long-running processes. I'm having trouble finding resources about the best practices to do that. ...
11
by: John Sheppard | last post by:
Hello there, I am running a webservice on IIS6, sometimes it runs at a reasonable speed, sometimes it runs painfully slow and sometimes inbetween. The application that consumes the service is...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.