Dreamweaver page to display Access database table or query data

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • KMEscherich
    New Member
    • Jun 2007
    • 69

    Dreamweaver page to display Access database table or query data

    Hi there, as I am totally new at this, can someone please give me detailed information on how to get Access table or query data to display onto a Dreamweaver page???

    Thank you.
  • liimra
    New Member
    • Aug 2010
    • 119

    #2
    Solution/

    There is nothing as Dreamweaver page, because Dreamweaver is a program used to create web pages (html, php..etc). Thus, what I think is that you want the table or query to be displayed on a web page. To achieve this, just export the Query to html (Access Ribbon --> External Data --> Export --> more --> export to HTML document). This will export the data as tables. After you finish, just open the page with Dreamweaver.

    Of course you can achieve this through VB

    Code:
    DoCmd.OutputTo acOutputQuery, "QueryName", acFormatHTML, , True
    This can be used for any query (active or inactive)

    Code:
    DoCmd.RunCommand acCmdExportHTML
    For active objects.

    Regards,
    Ali

    Comment

    • liimra
      New Member
      • Aug 2010
      • 119

      #3
      //

      Was this what you were looking for?

      Regards,
      Ali

      Comment

      Working...