Sql Query Display Options?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • LoneStar
    New Member
    • Nov 2006
    • 8

    #1

    Sql Query Display Options?

    Hello,

    I have a Access SQL statement as follows....What I am trying to do is to make sure that the results are displayed in a new form or in a popup message box? is this possible without using VB? Please help...

    Thanks.

    Select FirstName, LastName, Age, Gender, City FROM CustomerInfo;
  • MMcCarthy
    Recognized Expert MVP
    • Aug 2006
    • 14387

    #2
    Originally posted by LoneStar
    Hello,

    I have a Access SQL statement as follows....What I am trying to do is to make sure that the results are displayed in a new form or in a popup message box? is this possible without using VB? Please help...

    Thanks.

    Select FirstName, LastName, Age, Gender, City FROM CustomerInfo;
    Just create a new form and put statement into Record Source. Then set controls on the form with control source set to the fields.

    Comment

    Working...