Originally posted by Denburt
Form1 misspelled or missing
Collapse
X
-
Hmmm!Originally posted by DenburtYeah can't copy and paste the version info but I am currently using 2003 (11.6566.8132) SP2. Last I checked all updates were installed and I still had it happen.
Don't use 2003 that often. Most of my clients are still on 2000.Comment
-
Originally posted by DenburtYeah can't copy and paste the version info but I am currently using 2003 (11.6566.8132) SP2. Last I checked all updates were installed and I still had it happen.
I,ve used SaveFileasText and LoadFromText a number of times as the solution for some corrupted frontends and you're dead right, its never not done the businessComment
-
Wow, you have all been busy while I've been away over the weekend! As I said, I'm back in the "real" application after creating some new forms in a copy. The fantom Phorm still exists in this copy, but it is not causing any problems so I'm happy to leave it for the time being.
It seems to have caused quite a reaction from many experienced people though. I love this forum!
JimComment
-
Jim,
My advice (should you care to accept it) is "Always work clean".
By that I mean, never knowingly leave 'crap' in your work. It's unpredictable, and may come back and bite you in the rear-end when you least expect it.
I don't know all your circumstances so this is only advice and it's up to you what you choose to do of course.Comment
-
You are, as always, absolutely correct. I can only plead that I am, as always, under attack from the Dread Foe, the Great Enemy - Time.Originally posted by NeoPaJim,
My advice (should you care to accept it) is "Always work clean".
By that I mean, never knowingly leave 'crap' in your work. It's unpredictable, and may come back and bite you in the rear-end when you least expect it.
I don't know all your circumstances so this is only advice and it's up to you what you choose to do of course.
I will fix it, I semi-promise!
JImComment
-
Couple of things I thought you might give a go at is this, Changing Deadmod for your Modules name.
Sub DeleteModule()
DoCmd.DeleteObj ect acModule, "DeadModule "
End Sub
Check to see if the form still exists where you may not be able to see it. If it does you can use something similar to delete it.
Good Luck let us know if this helps.Code:For Each doc In Frmcon.Documents Set doc = Frmcon.Documents(doc.Name) Debug.Print doc.Name Entries = Entries + 1 'End If Next docComment
-
When I say that I see the form in Project Explorer, it is under "Microsoft Office Access Class Objects" not under "Modules". I will try this, but usingOriginally posted by DenburtCouple of things I thought you might give a go at is this, Changing Deadmod for your Modules name.
Sub DeleteModule()
DoCmd.DeleteObj ect acModule, "DeadModule "
End Sub
Check to see if the form still exists where you may not be able to see it. If it does you can use something similar to delete it.
Good Luck let us know if this helps.Code:For Each doc In Frmcon.Documents Set doc = Frmcon.Documents(doc.Name) Debug.Print doc.Name Entries = Entries + 1 'End If Next doc
DoCmd.DeleteObj ect acForm, "Form1"
instead. I'll get back to you.
JimComment
-
Originally posted by JustJimWhen I say that I see the form in Project Explorer, it is under "Microsoft Office Access Class Objects" not under "Modules". I will try this, but using
DoCmd.DeleteObj ect acForm, "Form1"
instead. I'll get back to you.
Jim
No...
Error 7874
(My application name) can't find the object 'Form1'
Back to the drawing board!
JimComment
-
Sorry I can't offer more advice I will keep my eyes peeled though. I just opened one of my apps and BAMM corruption so it looks like I am going to have a good day. Probably just another form needing the dreaded export import.
Good Luck and let us know if you find a solution.Comment
Comment