Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: MelF
  • Content: Threads
  • Order by date
  1. MelF

    Opening Linked Report

    I have an Orders form that includes a Kit Ready date. On this form also is a command button (Packing Slip) that opens up the Packing Slip (report) associated with that order. I want to make a report or make a macro to put in the OnOpen event of new report that pulls up all Packing Slip reports...
  2. MelF

    Duplicating Record within Form and Four Subforms

    I have a form that has four "sub" forms. (They're not technically "sub" forms, but regular forms, linked to the one main form.) They are all linked using the Customer ID (primary key in Customers table). The record source for all forms are: Form...
  3. MelF

    Disabling Control On Click of Checkbox

    I have a checkbox (LocationDataCheck), and a text control (LocationDataEntered). When LocationDataCheck is checked, I want LocationDataEntered to be disabled. I've put the following code into the OnClick of LocationDataCheck: Private Sub LocationDataCheck_AfterUpdate() If...
  4. MelF

    LIKE Operator and custom dialog box

    Question of the day: I have a custom dialog box (form) that prompts for criteria, then opens my report based on the specified criteria (Begin date, end date, and ProductName) It is working fine, and the query behind my report is: SELECT DISTINCTROW ProductsUsedbyDateQuery.ProductName...
  5. MelF

    Customized Dialog Box

    I've created an unbound form that prompts for report criteria. I know I've left something out somewhere, because when I run the report, which pulls up this dialog box, I enter the criteria I want, then I get this error: The object doesn’t contain the Automation object ‘DateRangeForm’. You...
  6. MelF

    Move Switchboard Item

    This sounds so simple, but I can't do it. I'm in my Switchboard Manager, trying to move the item Enter/View Orders by Employee to the second from the top of the list. I click on the Enter/View line, then click the Move Up button. This doesn't move what I've selected, but merely selects the...
  7. MelF

    Sum within Union Query

    I have the following query: SELECT[OrderID],[OrderDate],[ProductID],[ProductName],[Quantity] FROM[UnionQuery1] WHERE (OrderDate Between [Enter begin date:] And [Enter end date:]) AND ProductName LIKE "*" & [Enter Product Name:] & "*" UNION...
  8. MelF

    Parameters in Union Query

    I have this query: SELECT[OrderID],[OrderDate],[ProductID],[ProductName],[Quantity] FROM[UnionQuery1] UNION SELECT[OrderID],[OrderDate],[ProductID],[ProductName],[Quantity] FROM[UnionQuery2]; I want to add two parameters: One that prompts for date range (between1-1-00 and 1-28-00), and one...
  9. MelF

    Report Not Showing Data

    I have a report based on a union query. When I run the query, it's fine. It's pulling in all the correct data; however, when I create my report, and open it in Print Preview, only two out of the five fields are pulling the data in. Every other field just has the label, but no data in the...
  10. MelF

    Select Query

    Just don't know how I should be doing this: I have a query including two tables, Orders (Prim.Key=OrderID) and EmployeeShipping (Prim. Key = OrderID). The Orders table contains an OrderDate field. The EmployeeShipping table contains an EmpOrderDate field. Since both primary keys are called...
  11. MelF

    Linking DAP's

    O.K. - This is what I did with my forms and I'm wanting to mimic this with my DAP's if possible: I had two forms. I wanted one to act as a "subform" of my other form, so that when you opened up the Customer form for Smith you could click a command button that would then open the...
  12. MelF

    Drop Down List in Data Access Page

    I have a data access page that has a drop down list in it. This control is bound to the EmployeeID field in my Orders table (2-column field). I cannot figure out how to get this to show ONLY the employee name, and not ID. When I go into my DAP and properties for this control - There isn't...
  13. MelF

    Combo Box in Data Access Page

    There's a field in my Orders table called Employee ID. This field has a Number type, but displays the names of the employees. In the table, this field has a query (lookup)for its row source. This is fine in the table, but I need to get these values into a combo box in my DAP. I fill in the...
  14. MelF

    ANYONE EVER DESIGNED A DATA ACCESS PAGE???

    I have a form based on the table Customers. Now I've developed a DAP that also has the Customers table as its record source. My DAP fills out fine and saves fine; however, this data is not populating the Customers table. Any idea what's going on?
  15. MelF

    Type Conversion Error

    I have a form based on the table Customers. I then created a data access page also based on the Customers table. When I go into the data access page, all my data looks as it does in the form. However, when I go to add a new record, a few of the fields won't let me save any data to it. It...
  16. MelF

    Compile Error

    I have the following code in a command button: Private Sub PackingSlipButton_Click() On Error GoTo Err_PackingSlipButton_Click Dim stDocName As String stDocName = "EmployeePackingSlip" DoCmd.OpenReport stDocName, acPreview Exit_PackingSlipButton_Click: Exit Sub...
  17. MelF

    Option Box Uneditable

    I have this option button. When I click on it it gives me the message, "Control can't be edited; it's bound to unknown field 'Office Type'." There is no field called Office Type anywhere on my form, and when I go into the properties for this option box, there isn't even a Control...
  18. MelF

    Labels

    I used the Label Wizard to create my labels, with the data source being a query. The data gets into the report fine, but I can't edit where each label goes in the report. I'm thinking that there's no way to do this. Anyone know?
  19. MelF

    Pop-Up Box

    I have a report called Packing Slip. When I click on this a dialog box comes up that allows me to enter the info. that will be put onto the packing slip (date, number, etc.) When I fill this info. in, it takes me to the report, but I don't know how to edit the dialog box itself. Anybody?
  20. MelF

    Data Populating Table but Not Saving On Form

    Hello everyone. Current dilemma: I have a form that I enter data into. When I exit the form the data is saved to the appropriate table; however, when I go back into the form the data is gone. Why is this data not being saved to the form, but it is saved in the table?? I'll call the form in...

Part and Inventory Search

Back
Top