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 » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Lost All Forms



 
 
Thread Tools Display Modes
  #1  
Old April 17th, 2007, 10:02 PM posted to microsoft.public.access.forms
JamesJ
external usenet poster
 
Posts: 24
Default Lost All Forms

Has this happened to anyone else?
Designing a form and all of a sudden all form objects are gone in Access
2007.
Access asked to save the design of a form and that was the last I saw
of 10 objects in this db. Showing tables and related views find no more
forms in my
db.

James

  #2  
Old April 17th, 2007, 10:22 PM posted to microsoft.public.access.forms
Noreply
external usenet poster
 
Posts: 2
Default Lost All Forms

Did you try to compress and see if they come back?


"JamesJ" wrote in message
...
Has this happened to anyone else?
Designing a form and all of a sudden all form objects are gone in Access
2007.
Access asked to save the design of a form and that was the last I saw
of 10 objects in this db. Showing tables and related views find no more
forms in my
db.

James



  #3  
Old April 17th, 2007, 10:38 PM posted to microsoft.public.access.forms
JamesJ
external usenet poster
 
Posts: 24
Default Lost All Forms

Tried that. Have no idea what happened here.

"Noreply" wrote in message
...
Did you try to compress and see if they come back?


"JamesJ" wrote in message
...
Has this happened to anyone else?
Designing a form and all of a sudden all form objects are gone in Access
2007.
Access asked to save the design of a form and that was the last I saw
of 10 objects in this db. Showing tables and related views find no more
forms in my
db.

James




  #4  
Old April 18th, 2007, 03:04 AM posted to microsoft.public.access.forms
Damian S
external usenet poster
 
Posts: 741
Default Lost All Forms

Hope you have a backup!! If not, you will next time.

D.

"JamesJ" wrote:

Tried that. Have no idea what happened here.

"Noreply" wrote in message
...
Did you try to compress and see if they come back?


"JamesJ" wrote in message
...
Has this happened to anyone else?
Designing a form and all of a sudden all form objects are gone in Access
2007.
Access asked to save the design of a form and that was the last I saw
of 10 objects in this db. Showing tables and related views find no more
forms in my
db.

James





  #5  
Old April 18th, 2007, 03:42 AM posted to microsoft.public.access.forms
Allen Browne
external usenet poster
 
Posts: 11,706
Default Lost All Forms

James, I guess you are trying to find out whether the forms are somewhere
under the surface, even if you can't see them.

Try creating this query:
SELECT MSysObjects.Name
FROM MSysObjects
WHERE MSysObjects.Type = -32768
ORDER BY MSysObjects.Type, MSysObjects.Name;

Alternative approach: open the Immediate Window (Ctrl+G), and enter:
? CurrentProject.AllForms.Count
If there's more than zero, you can try:
? CurrentProject.AllForms(0).Name

Any luck?

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"JamesJ" wrote in message
...
Has this happened to anyone else?
Designing a form and all of a sudden all form objects are gone in Access
2007.
Access asked to save the design of a form and that was the last I saw
of 10 objects in this db. Showing tables and related views find no more
forms in my
db.

James


  #6  
Old April 18th, 2007, 11:11 AM posted to microsoft.public.access.forms
JamesJ
external usenet poster
 
Posts: 24
Default Lost All Forms

I backed it up a few minutes before. But with ac 2007 I have to
walk on eggshells... corrupted forms and the like. Seems all I need
to do is change the BackColor of a form object and the form becomes
corrupt.

James

"Damian S" wrote in message
...
Hope you have a backup!! If not, you will next time.

D.

"JamesJ" wrote:

Tried that. Have no idea what happened here.

"Noreply" wrote in message
...
Did you try to compress and see if they come back?


"JamesJ" wrote in message
...
Has this happened to anyone else?
Designing a form and all of a sudden all form objects are gone in
Access
2007.
Access asked to save the design of a form and that was the last I saw
of 10 objects in this db. Showing tables and related views find no
more
forms in my
db.

James





  #7  
Old April 18th, 2007, 11:16 AM posted to microsoft.public.access.forms
JamesJ
external usenet poster
 
Posts: 24
Default Lost All Forms

Yes. The query returned the all form names.
Now what?

James

"Allen Browne" wrote in message
...
James, I guess you are trying to find out whether the forms are somewhere
under the surface, even if you can't see them.

Try creating this query:
SELECT MSysObjects.Name
FROM MSysObjects
WHERE MSysObjects.Type = -32768
ORDER BY MSysObjects.Type, MSysObjects.Name;

Alternative approach: open the Immediate Window (Ctrl+G), and enter:
? CurrentProject.AllForms.Count
If there's more than zero, you can try:
? CurrentProject.AllForms(0).Name

Any luck?

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"JamesJ" wrote in message
...
Has this happened to anyone else?
Designing a form and all of a sudden all form objects are gone in Access
2007.
Access asked to save the design of a form and that was the last I saw
of 10 objects in this db. Showing tables and related views find no more
forms in my
db.

James



  #8  
Old April 18th, 2007, 12:59 PM posted to microsoft.public.access.forms
Allen Browne
external usenet poster
 
Posts: 11,706
Default Lost All Forms

Excellent. They are still present.

That means they may be marked as hidden objects, or the navigation bar may
be filtered to exclude those objects.

Go to:
Office Button | Access Options | Current Database | Navigation Options.
Under Categories, choose Object Type.
Make sure the Forms box is checked (on the right.)
At the bottom of the dialog, check the boxes for Show Hidden Objects and
Show System Objects.

If you can now see your forms in the Navigation Pane, right-click and choose
View Properties. Make sure the Hidden box is not checked.

Since you can see the names of your forms, you can also try opening one like
this:
1. Press Ctrl+G to open the Immediate window.

2. Enter:
DoCmd.OpenForm "Form1"
substituting your form name for Form1.
If it opens, that may reassure you they are okay.

Let us know how you go.

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"JamesJ" wrote in message
...
Yes. The query returned the all form names.
Now what?

James

"Allen Browne" wrote in message
...
James, I guess you are trying to find out whether the forms are somewhere
under the surface, even if you can't see them.

Try creating this query:
SELECT MSysObjects.Name
FROM MSysObjects
WHERE MSysObjects.Type = -32768
ORDER BY MSysObjects.Type, MSysObjects.Name;

Alternative approach: open the Immediate Window (Ctrl+G), and enter:
? CurrentProject.AllForms.Count
If there's more than zero, you can try:
? CurrentProject.AllForms(0).Name

Any luck?

"JamesJ" wrote in message
...
Has this happened to anyone else?
Designing a form and all of a sudden all form objects are gone in Access
2007.
Access asked to save the design of a form and that was the last I saw
of 10 objects in this db. Showing tables and related views find no more
forms in my
db.

James


  #9  
Old April 18th, 2007, 08:01 PM posted to microsoft.public.access.forms
JamesJ
external usenet poster
 
Posts: 24
Default Lost All Forms

No good. Navigation Pane still not showing Forms except for the
one form that I saved the design changes to when this happenned.

James

"Allen Browne" wrote in message
...
Excellent. They are still present.

That means they may be marked as hidden objects, or the navigation bar may
be filtered to exclude those objects.

Go to:
Office Button | Access Options | Current Database | Navigation Options.
Under Categories, choose Object Type.
Make sure the Forms box is checked (on the right.)
At the bottom of the dialog, check the boxes for Show Hidden Objects and
Show System Objects.

If you can now see your forms in the Navigation Pane, right-click and
choose View Properties. Make sure the Hidden box is not checked.

Since you can see the names of your forms, you can also try opening one
like this:
1. Press Ctrl+G to open the Immediate window.

2. Enter:
DoCmd.OpenForm "Form1"
substituting your form name for Form1.
If it opens, that may reassure you they are okay.

Let us know how you go.

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"JamesJ" wrote in message
...
Yes. The query returned the all form names.
Now what?

James

"Allen Browne" wrote in message
...
James, I guess you are trying to find out whether the forms are
somewhere under the surface, even if you can't see them.

Try creating this query:
SELECT MSysObjects.Name
FROM MSysObjects
WHERE MSysObjects.Type = -32768
ORDER BY MSysObjects.Type, MSysObjects.Name;

Alternative approach: open the Immediate Window (Ctrl+G), and enter:
? CurrentProject.AllForms.Count
If there's more than zero, you can try:
? CurrentProject.AllForms(0).Name

Any luck?

"JamesJ" wrote in message
...
Has this happened to anyone else?
Designing a form and all of a sudden all form objects are gone in
Access 2007.
Access asked to save the design of a form and that was the last I saw
of 10 objects in this db. Showing tables and related views find no more
forms in my
db.

James



  #10  
Old April 19th, 2007, 03:06 AM posted to microsoft.public.access.forms
Allen Browne
external usenet poster
 
Posts: 11,706
Default Lost All Forms

Can you open them programmatically, i.e. using the DoCmd.OpenForm?

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"JamesJ" wrote in message
...
No good. Navigation Pane still not showing Forms except for the
one form that I saved the design changes to when this happenned.

James

"Allen Browne" wrote in message
...
Excellent. They are still present.

That means they may be marked as hidden objects, or the navigation bar
may be filtered to exclude those objects.

Go to:
Office Button | Access Options | Current Database | Navigation
Options.
Under Categories, choose Object Type.
Make sure the Forms box is checked (on the right.)
At the bottom of the dialog, check the boxes for Show Hidden Objects and
Show System Objects.

If you can now see your forms in the Navigation Pane, right-click and
choose View Properties. Make sure the Hidden box is not checked.

Since you can see the names of your forms, you can also try opening one
like this:
1. Press Ctrl+G to open the Immediate window.

2. Enter:
DoCmd.OpenForm "Form1"
substituting your form name for Form1.
If it opens, that may reassure you they are okay.

Let us know how you go.

"JamesJ" wrote in message
...
Yes. The query returned the all form names.
Now what?

James

"Allen Browne" wrote in message
...
James, I guess you are trying to find out whether the forms are
somewhere under the surface, even if you can't see them.

Try creating this query:
SELECT MSysObjects.Name
FROM MSysObjects
WHERE MSysObjects.Type = -32768
ORDER BY MSysObjects.Type, MSysObjects.Name;

Alternative approach: open the Immediate Window (Ctrl+G), and enter:
? CurrentProject.AllForms.Count
If there's more than zero, you can try:
? CurrentProject.AllForms(0).Name

Any luck?

"JamesJ" wrote in message
...
Has this happened to anyone else?
Designing a form and all of a sudden all form objects are gone in
Access 2007.
Access asked to save the design of a form and that was the last I saw
of 10 objects in this db. Showing tables and related views find no
more forms in my
db.


 




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 03:09 AM.


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