473,394 Members | 1,854 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,394 software developers and data experts.

Continual unrecoverable Form corruption

Hello,

I have a form that seems to corrupt over and over again. I can't open it in
design view, usually getting a message like "There isn't enough memory to
perform this operation. Close unneeded programs and try the operation
again.". I can get to the code but can't seem to do anything to get into
design view. The thing I thought about at first was the number of controls
on the form; there are about 320 controls, but that is still about half of
the Access limit of 754. I also removed about 120 text boxes and placed
them in a subform to reduce the number of controls on the main form. Any
idea what might be causing this problem? at this point, I feel like I'm
spinning my wheels, because I have to keep restoring from a previous
version, then modify and hopefully save a copy before the form corrupts
again. One thing I should add, is the corruption only happens when I'm
modifying the design.

Any help or direction on this issue would be greatly appreciated.

Thanks!
Rick
Oct 15 '07 #1
8 2375
Rico wrote:
Hello,

I have a form that seems to corrupt over and over again. I can't open it in
design view, usually getting a message like "There isn't enough memory to
perform this operation. Close unneeded programs and try the operation
again.". I can get to the code but can't seem to do anything to get into
design view. The thing I thought about at first was the number of controls
on the form; there are about 320 controls, but that is still about half of
the Access limit of 754. I also removed about 120 text boxes and placed
them in a subform to reduce the number of controls on the main form. Any
idea what might be causing this problem? at this point, I feel like I'm
spinning my wheels, because I have to keep restoring from a previous
version, then modify and hopefully save a copy before the form corrupts
again. One thing I should add, is the corruption only happens when I'm
modifying the design.

Any help or direction on this issue would be greatly appreciated.

Thanks!
Rick


1)Try copying the form in the current database and try editing the copy.

2)Try importing the form into a clean database, that has any source
tables and queries defined.

3) Try saving the sub form and then replacing it with a very simple
subform - to see if that can be edited.

4) After recovering from a previous version, what edits do you do to the
form? After these edits are you EVER able to edit it?

Bob
Oct 15 '07 #2
remember that the 754 limit is life-span
it might be an idea to export the form (using application.saveastext) &
importing
(application.loadfromtext)
Pieter

"Rico" <me@you.comwrote in message news:BkPQi.14424$G25.2918@edtnps89...
Hello,

I have a form that seems to corrupt over and over again. I can't open it
in design view, usually getting a message like "There isn't enough memory
to perform this operation. Close unneeded programs and try the operation
again.". I can get to the code but can't seem to do anything to get into
design view. The thing I thought about at first was the number of
controls on the form; there are about 320 controls, but that is still
about half of the Access limit of 754. I also removed about 120 text
boxes and placed them in a subform to reduce the number of controls on the
main form. Any idea what might be causing this problem? at this point, I
feel like I'm spinning my wheels, because I have to keep restoring from a
previous version, then modify and hopefully save a copy before the form
corrupts again. One thing I should add, is the corruption only happens
when I'm modifying the design.

Any help or direction on this issue would be greatly appreciated.

Thanks!
Rick


Oct 15 '07 #3
Rico wrote:
Hello,

I have a form that seems to corrupt over and over again. I can't open it in
design view, usually getting a message like "There isn't enough memory to
perform this operation. Close unneeded programs and try the operation
again.". I can get to the code but can't seem to do anything to get into
design view. The thing I thought about at first was the number of controls
on the form; there are about 320 controls, but that is still about half of
the Access limit of 754. I also removed about 120 text boxes and placed
them in a subform to reduce the number of controls on the main form. Any
idea what might be causing this problem? at this point, I feel like I'm
spinning my wheels, because I have to keep restoring from a previous
version, then modify and hopefully save a copy before the form corrupts
again. One thing I should add, is the corruption only happens when I'm
modifying the design.

Any help or direction on this issue would be greatly appreciated.

Thanks!
Rick

Along with the other's comments...sometimes I open the "corrupt" form
and create a new form and select all controls on the bad form and do and
Edit/Copy from the bad form and Edit/Paste to the new form. Then copy
in the code. Then save the new form, delete the old.

Oct 15 '07 #4
That would work if I could open the form in design view. ;)
"Salad" <oi*@vinegar.comwrote in message
news:13*************@corp.supernews.com...
Rico wrote:
>Hello,

I have a form that seems to corrupt over and over again. I can't open it
in design view, usually getting a message like "There isn't enough memory
to perform this operation. Close unneeded programs and try the operation
again.". I can get to the code but can't seem to do anything to get into
design view. The thing I thought about at first was the number of
controls on the form; there are about 320 controls, but that is still
about half of the Access limit of 754. I also removed about 120 text
boxes and placed them in a subform to reduce the number of controls on
the main form. Any idea what might be causing this problem? at this
point, I feel like I'm spinning my wheels, because I have to keep
restoring from a previous version, then modify and hopefully save a copy
before the form corrupts again. One thing I should add, is the
corruption only happens when I'm modifying the design.

Any help or direction on this issue would be greatly appreciated.

Thanks!
Rick

Along with the other's comments...sometimes I open the "corrupt" form and
create a new form and select all controls on the bad form and do and
Edit/Copy from the bad form and Edit/Paste to the new form. Then copy in
the code. Then save the new form, delete the old.

Oct 16 '07 #5
I tried SaveAsText but the app craps out before saving.

"Pieter Wijnen"
<it*********************************************** ***********@online.replace.with.norway>
wrote in message news:OZ**************@TK2MSFTNGP02.phx.gbl...
remember that the 754 limit is life-span
it might be an idea to export the form (using application.saveastext) &
importing
(application.loadfromtext)
Pieter

"Rico" <me@you.comwrote in message news:BkPQi.14424$G25.2918@edtnps89...
>Hello,

I have a form that seems to corrupt over and over again. I can't open it
in design view, usually getting a message like "There isn't enough memory
to perform this operation. Close unneeded programs and try the operation
again.". I can get to the code but can't seem to do anything to get into
design view. The thing I thought about at first was the number of
controls on the form; there are about 320 controls, but that is still
about half of the Access limit of 754. I also removed about 120 text
boxes and placed them in a subform to reduce the number of controls on
the main form. Any idea what might be causing this problem? at this
point, I feel like I'm spinning my wheels, because I have to keep
restoring from a previous version, then modify and hopefully save a copy
before the form corrupts again. One thing I should add, is the
corruption only happens when I'm modifying the design.

Any help or direction on this issue would be greatly appreciated.

Thanks!
Rick



Oct 16 '07 #6
Hi Bob,

Thanks for your advice. I wound up recreating the entire form from scratch,
one control at a time, but, to answer your question;
4) After recovering from a previous version, what edits do you do to the
form? After these edits are you EVER able to edit it?
All I was doing was trying to add a new combo box. after adding and saving
the form, I haven't been able to open it.

Rick

"Bob Alston" <bo********@yahoo.comwrote in message
news:6r*************@newsfe02.lga...
Rico wrote:
>Hello,

I have a form that seems to corrupt over and over again. I can't open it
in design view, usually getting a message like "There isn't enough memory
to perform this operation. Close unneeded programs and try the operation
again.". I can get to the code but can't seem to do anything to get into
design view. The thing I thought about at first was the number of
controls on the form; there are about 320 controls, but that is still
about half of the Access limit of 754. I also removed about 120 text
boxes and placed them in a subform to reduce the number of controls on
the main form. Any idea what might be causing this problem? at this
point, I feel like I'm spinning my wheels, because I have to keep
restoring from a previous version, then modify and hopefully save a copy
before the form corrupts again. One thing I should add, is the
corruption only happens when I'm modifying the design.

Any help or direction on this issue would be greatly appreciated.

Thanks!
Rick



1)Try copying the form in the current database and try editing the copy.

2)Try importing the form into a clean database, that has any source tables
and queries defined.

3) Try saving the sub form and then replacing it with a very simple
subform - to see if that can be edited.

4) After recovering from a previous version, what edits do you do to the
form? After these edits are you EVER able to edit it?

Bob

Oct 16 '07 #7
Rico wrote:
Hi Bob,

Thanks for your advice. I wound up recreating the entire form from scratch,
one control at a time, but, to answer your question;
>4) After recovering from a previous version, what edits do you do to the
form? After these edits are you EVER able to edit it?

All I was doing was trying to add a new combo box. after adding and saving
the form, I haven't been able to open it.

Rick

"Bob Alston" <bo********@yahoo.comwrote in message
news:6r*************@newsfe02.lga...
>Rico wrote:
>>Hello,

I have a form that seems to corrupt over and over again. I can't open it
in design view, usually getting a message like "There isn't enough memory
to perform this operation. Close unneeded programs and try the operation
again.". I can get to the code but can't seem to do anything to get into
design view. The thing I thought about at first was the number of
controls on the form; there are about 320 controls, but that is still
about half of the Access limit of 754. I also removed about 120 text
boxes and placed them in a subform to reduce the number of controls on
the main form. Any idea what might be causing this problem? at this
point, I feel like I'm spinning my wheels, because I have to keep
restoring from a previous version, then modify and hopefully save a copy
before the form corrupts again. One thing I should add, is the
corruption only happens when I'm modifying the design.

Any help or direction on this issue would be greatly appreciated.

Thanks!
Rick


1)Try copying the form in the current database and try editing the copy.

2)Try importing the form into a clean database, that has any source tables
and queries defined.

3) Try saving the sub form and then replacing it with a very simple
subform - to see if that can be edited.

4) After recovering from a previous version, what edits do you do to the
form? After these edits are you EVER able to edit it?

Bob

So is it now working OK? If so the problem was probably the lifetime
max on controls. A way around this is to copy the form, delete the
original then rename the copy. works slick. works for tables also.

bob
Oct 16 '07 #8
Can you import the corrupted form into a new blank database? Just that form,
nothing else?

If you can't then i'd give up. If it won't import I'd call it corrupted
beyond repair. Rebuild it from scratch or a usable backup (a backup version
carries a reoccurance risk however, so be careful..).

If you can import it, and can also open it in design view, then the import
*may* have fixed it & you can import all other objects into the new mdb file
and move forward.

HTH,
"Rico" <me@you.comwrote in message news:8Z5Ri.15195$G25.4600@edtnps89...
That would work if I could open the form in design view. ;)
"Salad" <oi*@vinegar.comwrote in message
news:13*************@corp.supernews.com...
>Rico wrote:
>>Hello,

I have a form that seems to corrupt over and over again. I can't open
it in design view, usually getting a message like "There isn't enough
memory to perform this operation. Close unneeded programs and try the
operation again.". I can get to the code but can't seem to do anything
to get into design view. The thing I thought about at first was the
number of controls on the form; there are about 320 controls, but that
is still about half of the Access limit of 754. I also removed about
120 text boxes and placed them in a subform to reduce the number of
controls on the main form. Any idea what might be causing this problem?
at this point, I feel like I'm spinning my wheels, because I have to
keep restoring from a previous version, then modify and hopefully save a
copy before the form corrupts again. One thing I should add, is the
corruption only happens when I'm modifying the design.

Any help or direction on this issue would be greatly appreciated.

Thanks!
Rick

Along with the other's comments...sometimes I open the "corrupt" form and
create a new form and select all controls on the bad form and do and
Edit/Copy from the bad form and Edit/Paste to the new form. Then copy in
the code. Then save the new form, delete the old.


Oct 16 '07 #9

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

Similar topics

0
by: Trevor Best | last post by:
Access 2002 MDB -> SQL Server 2000 - ODBC Linked tables. B4 we start, this is not occurring in a recordset operation and yes I googled, even found my own fix, which I already use...
2
by: lsloan | last post by:
Hi! I have a reoccuring problem with one of my databases where forms will occasionally become corrupted. Since I have backup copies of my production databases, it is easy to recover from using...
2
by: Chris Dunaway | last post by:
I was working on a Windows Forms app. The main form had a tab control, a number of tabs with labels and buttons, etc. It is a new project so not much work has been completed yet. I added an...
2
by: Marc Gravell | last post by:
Aaarrggghhh! Maybe I've just got lucky, but until now I haven't had such a seemingly unrecoverable form corruption error... I have a reasonably complex form (data-binding to sub-controls, events,...
0
by: Deano | last post by:
I'm having this problem when closing a form that I really don't think should be happening; This is the last section of code in the afterupdate of a combo box in form frm_Agency; ...
23
by: Dave G | last post by:
Since upgrading one of my clients from A97/W2000 to A2003/XP they have suffered no end of data corruption problems, mainly involving one of the main tables. The corruption can result in one...
5
by: Phil Powell | last post by:
Requirement is to refresh a page in the form of a continual form submittal (for server-side validation and action) Here is the Javascript I came up with that I thought would do that: <script...
1
by: dbagirltx | last post by:
We have done some testing with mixed and forgotten results. So I'm hoping that asking here can clarify some issues for us. Right now we do one weekly warm backup. Throughout the week there are...
14
by: =?Utf-8?B?UHVjY2E=?= | last post by:
Hi, I'm using VS2005 and .net 2.0. I'm creating an application that has 3 forms. I want allow users to move forward and backward with the forms and retain the data users have entered. I thought...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.