dbTalk Databases Forums  

Finding hidden objects in Access 2003

comp.databases.ms-access comp.databases.ms-access


Discuss Finding hidden objects in Access 2003 in the comp.databases.ms-access forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Arsene@selenium.net
 
Posts: n/a

Default Finding hidden objects in Access 2003 - 04-01-2011 , 11:20 AM






I inherited this Access application, in which some fields in several
tables are supposed to contain hyperlinks pointing to PDF documents
sitting elsewhere in the network. The original designer appears to
have embedded some of these PDF documents in the database itself, with
the consequent bloat. While persuing through one of the tables, I
found an odd looking character in one of the hyperlink fields, deleted
it, and saw a 5 MB reduction in the size of the database file.

Is there any way to reveal any and all objects that have been hidden
in a Microsoft mdb file?

Thanks

Reply With Quote
  #2  
Old   
Charles Hottel
 
Posts: n/a

Default Re: Finding hidden objects in Access 2003 - 04-01-2011 , 01:26 PM






<Arsene (AT) selenium (DOT) net> wrote

Quote:
I inherited this Access application, in which some fields in several
tables are supposed to contain hyperlinks pointing to PDF documents
sitting elsewhere in the network. The original designer appears to
have embedded some of these PDF documents in the database itself, with
the consequent bloat. While persuing through one of the tables, I
found an odd looking character in one of the hyperlink fields, deleted
it, and saw a 5 MB reduction in the size of the database file.

Is there any way to reveal any and all objects that have been hidden
in a Microsoft mdb file?

Thanks
I do not know if this reveals all hidden objects or not, but try:

Tools > Options > View tab > Select chec box for Hidden Objects

Reply With Quote
  #3  
Old   
Arsene@selenium.net
 
Posts: n/a

Default Re: Finding hidden objects in Access 2003 - 04-01-2011 , 01:42 PM



Thanks for the tip, Charles, however, this does not appear to reveal
embedded objects. It seems to me there should be a way to view such
objects.

Thanks.

On Fri, 1 Apr 2011 14:26:39 -0400, "Charles Hottel"
<chottel (AT) earthlink (DOT) net> wrote:

Quote:
Arsene (AT) selenium (DOT) net> wrote in message
news:moubp6pc0u03ioeblep9f1altcqqi72p7g (AT) 4ax (DOT) com...
I inherited this Access application, in which some fields in several
tables are supposed to contain hyperlinks pointing to PDF documents
sitting elsewhere in the network. The original designer appears to
have embedded some of these PDF documents in the database itself, with
the consequent bloat. While persuing through one of the tables, I
found an odd looking character in one of the hyperlink fields, deleted
it, and saw a 5 MB reduction in the size of the database file.

Is there any way to reveal any and all objects that have been hidden
in a Microsoft mdb file?

Thanks

I do not know if this reveals all hidden objects or not, but try:

Tools > Options > View tab > Select chec box for Hidden Objects

Reply With Quote
  #4  
Old   
Salad
 
Posts: n/a

Default Re: Finding hidden objects in Access 2003 - 04-01-2011 , 07:10 PM



Arsene (AT) selenium (DOT) net wrote:

Quote:
Thanks for the tip, Charles, however, this does not appear to reveal
embedded objects. It seems to me there should be a way to view such
objects.

Thanks.

On Fri, 1 Apr 2011 14:26:39 -0400, "Charles Hottel"
chottel (AT) earthlink (DOT) net> wrote:


Arsene (AT) selenium (DOT) net> wrote in message
news:moubp6pc0u03ioeblep9f1altcqqi72p7g (AT) 4ax (DOT) com...

I inherited this Access application, in which some fields in several
tables are supposed to contain hyperlinks pointing to PDF documents
sitting elsewhere in the network. The original designer appears to
have embedded some of these PDF documents in the database itself, with
the consequent bloat. While persuing through one of the tables, I
found an odd looking character in one of the hyperlink fields, deleted
it, and saw a 5 MB reduction in the size of the database file.

Is there any way to reveal any and all objects that have been hidden
in a Microsoft mdb file?

Thanks

I do not know if this reveals all hidden objects or not, but try:

Tools > Options > View tab > Select chec box for Hidden Objects

Maybe this link might help along with what Charles said.
http://www.everythingaccess.com/tuto...-VBA-%28DAO%29

You could modify the above program to look just for fields that have Ole
Objects. Ex:
Case dbLongBinary: strReturn = "OLE Object" '11
by cuttinng out the all other types of fld.Type in the code. Maybe
return a boolean True if it has an Ole Object, false if none.

Then run a program that loops thru your tables and list out all that
have OleObject field types. I don't think you have to unhide the tables
but maybe.

Reply With Quote
  #5  
Old   
Arsene@selenium.net
 
Posts: n/a

Default Re: Finding hidden objects in Access 2003 - 04-02-2011 , 10:02 AM



That approach would likely work, Salad.

It does appear to me, though, that, just like the Access environment
provides the capability to embed objects into the database file, it
should likewise provide the capability to reveal such objects for
inspection and/or removal as needed. Not providing such capability
seems like an odd decision on the part of MS.

Thanks for the tip, I'll see if I can make it work for my particualr
situation.

Arsene


On Fri, 01 Apr 2011 19:10:12 -0500, Salad <salad (AT) oilandvinegar (DOT) com>
wrote:

Quote:
Arsene (AT) selenium (DOT) net wrote:

Thanks for the tip, Charles, however, this does not appear to reveal
embedded objects. It seems to me there should be a way to view such
objects.

Thanks.

On Fri, 1 Apr 2011 14:26:39 -0400, "Charles Hottel"
chottel (AT) earthlink (DOT) net> wrote:


Arsene (AT) selenium (DOT) net> wrote in message
news:moubp6pc0u03ioeblep9f1altcqqi72p7g (AT) 4ax (DOT) com...

I inherited this Access application, in which some fields in several
tables are supposed to contain hyperlinks pointing to PDF documents
sitting elsewhere in the network. The original designer appears to
have embedded some of these PDF documents in the database itself, with
the consequent bloat. While persuing through one of the tables, I
found an odd looking character in one of the hyperlink fields, deleted
it, and saw a 5 MB reduction in the size of the database file.

Is there any way to reveal any and all objects that have been hidden
in a Microsoft mdb file?

Thanks

I do not know if this reveals all hidden objects or not, but try:

Tools > Options > View tab > Select chec box for Hidden Objects


Maybe this link might help along with what Charles said.
http://www.everythingaccess.com/tuto...-VBA-%28DAO%29

You could modify the above program to look just for fields that have Ole
Objects. Ex:
Case dbLongBinary: strReturn = "OLE Object" '11
by cuttinng out the all other types of fld.Type in the code. Maybe
return a boolean True if it has an Ole Object, false if none.

Then run a program that loops thru your tables and list out all that
have OleObject field types. I don't think you have to unhide the tables
but maybe.



Reply With Quote
Reply




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 On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.