Search results

  1. P

    Trying to Join two Queries

    I am having a problem trying to join two queries. The first query, which is called qry_Planned_By_Month comes from a table (tbl_planned) that captures budget planning information. I created an expression in this query called SumOfPlanned. It takes the sum of all common budget line items (BLI)...
  2. P

    Default Field Values

    I have a form (form1 in the sample code below) with three combo boxes. I set each combo box to have a specific default value. However, I want to give the user the ability to reset the default values. I accomplished this by creating a pop-up (form2 in the sample code below) form that has the...
  3. P

    Plus signs disappear on a subform

    I am baffled and am hoping someone can help me. I have a form with a subform. The subform also has a subform. Both subforms are displayed in datasheet view. When I enter a record on the first subform, then enter a child record on the second subform, a plus sign appears on the first subform...
  4. P

    Populate Textbox with SQL query

    I think you can do a "DLookup" function within your text box. Put an unbound text box on a form. In the control source of the text box, put =DLookup("EmployeeName", "Employees", "Password = " & yourPasswordVariableName). The syntax will need to be tweeked, but basicall you are telling the...
  5. P

    Automatic Section Numbering

    I have been tasked to build a requirements gathering database. The user inputs information about project requirements, and this data eventually will feed a "System Requirements Document (SRD)." My customer's SRD template is broken down into sections, Section 4.4 is the "functional...
  6. P

    Commenting Code

    Is there a way to comment out large chunks of code without having to comment each individual line? Thanks!
Back
Top Bottom