Results 1 to 5 of 5

Thread: Access97 Q. maybe easy !!Please!!

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    May 2001
    Location
    Köln
    Posts
    395

    Access97 Q. maybe easy !!Please!!

    Greetings,

    is it possible to create a report in Access from himself?
    e.g. I like to get a report of all tables, fields, fieldtypes and fieldproperty.

    Is there a example somewhere or can someone point me in the right direction.

    Thanks in advance
    Manfred
    Last edited by Bongo; Apr 9th, 2003 at 01:57 AM.

  2. #2
    Frenzied Member PilgrimPete's Avatar
    Join Date
    Feb 2002
    Posts
    1,313
    Don't know about 97, but in 2K and XP there is an analyse wizard:
    Tools --> Analyze --> Documenter

    If not, you can do a similar thing in code, using TableDefs, FieldDefs etc.

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    May 2001
    Location
    Köln
    Posts
    395
    thanks PilgrimPete,
    but I am in the moment on a client computer
    with no access to any development env. otherwise I would do
    it quickly in VB.

    and I can not find any wizards in access97.

    Any suggestion?

  4. #4
    Hyperactive Member goatsucker's Avatar
    Join Date
    Dec 2002
    Location
    Leeds, England
    Posts
    283
    There is a system table called MSysObjects, which is a list of all objects in the database. You can see this an all the other system tables by going to Tools->options->View Tab, and set the "System Objects" checkbox. To get a list of all tables [code]Select Name
    FROM MSysObjects
    WHERE type =1[code/]
    will give you all table names (Including the System tables). You can do similar with other objects (I think for Querues, Type = 5).

    Not sure about fileds, but they may turn up in this table. Have a look and see what you get.
    After all "Rust Never Sleeps"

  5. #5

    Thread Starter
    Hyperactive Member
    Join Date
    May 2001
    Location
    Köln
    Posts
    395
    Hi goatsucker,

    thanks for the input - did'nt know aqbout this feature, but
    it only schows value 1,2,3 where 1 = tables, 2 = somthing called MySysDB and 3 looks like Relationships etc.

    Is it not possible to do a select statement like

    select field, fieldtype, fieldproperty from <Table> ??

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width