Advertisement

03.28.2008 at 08:46AM PDT, ID: 23277557
[x]
Attachment Details

Microsoft, Access, 2000, Create Query or Form from Recordset in VBA

Asked by nquinn94 in Access Coding/Macros, Microsoft Access Database, Access Forms

Tags: Microsoft, Access, 2000, Create Query or Form from Recordset in VBA

I have created a recordset using three tables and criteria received from user input on a form.  I would like to be able to view the recordset in a datasheet.  How do I create a view for this recordset?Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
Private Sub cmdSubmit_Click()
 
Dim intConstTypeValue As Integer
Dim strSQL As String
Dim dtmDate As Date
Dim rstConstType As ADODB.Recordset
 
intConstTypeValue = OptConstType.Value
 
dtmDate = txtDate
 
strSQL = "SELECT [Project Information].ProjectNumber, [Project Information].NameofProject, ConstructionType.ConstructionTypeDesc, [Project Information].ContractBegDate, [Project Information].ContractEndDate, [Project Information].BegDate, [Project Information].EndDate, [Job Cost Information].ContractCost, [Job Cost Information].ActualCost, ConstructionType.ConstructionTypeId " & _
    "FROM (ConstructionType RIGHT JOIN [Project Information] ON ConstructionType.ConstructionTypeId = [Project Information].ConstructionTypeId) LEFT JOIN [Job Cost Information] ON [Project Information].ProjectNumber = [Job Cost Information].ProjectNumber " & _
    "WHERE ((([Project Information].EndDate) > #" & dtmDate & "# Or ([Project Information].EndDate) Is Null) And ((ConstructionType.ConstructionTypeId) = " & intConstTypeValue & "))"
    
    
Set rstConstType = New ADODB.Recordset
 
rstConstType.Open strSQL, CurrentProject.Connection, adOpenForwardOnly, adLockReadOnly
 
 
 
 
 
 
End Sub
 
Loading Advertisement...
 
[+][-]03.28.2008 at 08:56AM PDT, ID: 21231532

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Access Coding/Macros, Microsoft Access Database, Access Forms
Tags: Microsoft, Access, 2000, Create Query or Form from Recordset in VBA
Sign Up Now!
Solution Provided By: tomblin
Participating Experts: 2
Solution Grade: A
 
 
[+][-]03.28.2008 at 09:07AM PDT, ID: 21231639

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 7-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]03.28.2008 at 09:22AM PDT, ID: 21231788

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628