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 Mike Lewis 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: metrodub
  • Order by date
  1. metrodub

    Checkbox from subform to trigger change in textbox on main form

    Perfect. Thank you for your quick reply.
  2. metrodub

    Checkbox from subform to trigger change in textbox on main form

    Hello, I have a main form (frmClass) that contains a subform (sfrmMaterials). The materials subform populates when a user chooses a course from a course combobox. The fields that populate in the subform are Instrument, Cost, Vendor and a checkbox (chkSelected). What I would like to do is...
  3. metrodub

    Total Spent over chosen timeframe

    Wow...is it Monday? Time to turn my brain on. Thanks Leslie!
  4. metrodub

    Total Spent over chosen timeframe

    I am now getting an "Undefined function 'WHERE' in expression" error when I try to run this SQL: SELECT tblCompany.CompanyName, Sum([AirCost]+[DeliveryCost]) AS [Total Spent] FROM tblCompany INNER JOIN (tblInvoices INNER JOIN tblPO ON tblInvoices.POID = tblPO.POID) ON tblCompany.CompanyID =...
  5. metrodub

    Total Spent over chosen timeframe

    I have three databases that interact with each other. One is a vendor asset management db that houses vendors that my company uses, their contact information as well as contract data. Another db contains data on Purchase Orders that we use to pay these Vendors. The third database is an...
  6. metrodub

    Is this possible?

    I'm unsure how to do this, or if this can even be done. I have four tables: tblCompany CompanyID (PK) CompanyName ...company data My company works with outside vendors (companies) to do facilitation. Before a vendor is brought in, we need to get authorization from Finance to increase the...
  7. metrodub

    Relationship Question

    I am creating a database to track training for my company. We use outside facilitators to teach these classes. There are some instances where a facilitator (partner) works for more than one company (vendor). The second vendor is usually the partner working as a sole proprietor. My table...
  8. metrodub

    Subreport only showing 8 results from query.

    That did the trick. The detail section was not set to Can Grow. Thanks for your help! Here's a star.
  9. metrodub

    Subreport only showing 8 results from query.

    The can grow setting was set to yes, so it isn't that. The strange thing is that this worked yesterday.
  10. metrodub

    Subreport only showing 8 results from query.

    Sorry, facilitator and partner are the same person. I will look at the can grow setting.
  11. metrodub

    Subreport only showing 8 results from query.

    Both are set to PartnerID, but there isn't a distinction between the two. One PartnerID comes from the query used for the main report, the other comes from the query for the subreport. Should I change them?
  12. metrodub

    Subreport only showing 8 results from query.

    Not sure how this happened... I have a subreport that shows classes taught by a facilitator. The main report shows facilitator data such as address, phone, etc.. For some reason, the subreport is only showing 8 results no matter which facilitator is chosen. When I run the query on its own...
  13. metrodub

    ComboBox/NotInList Question

    I have a form for Projects. On this form are 11 controls: cboProjectCompany - Unbound combobox with Company Names. cboPONumber - Bound (POID) combobox that contains Purchase Order Numbers associated with the Company chosen from the Company combobox. cboPOExist - Bound (POExist) combobox...
  14. metrodub

    Weird form - subform relationship. Please help.

    I have a form (frmVendorManagement) that contains 10 controls: cboCompanyName - an unbound combobox that lists, you guessed it, Company Names. txtVendorNumber - a textbox with cboCompanyName.Column(2) as its control source. 4 other text boxes - all with their control source set to a column from...
  15. metrodub

    Search brings up blank form

    wow, can't believe it was all about a space. Thanks AceMan!
  16. metrodub

    Search brings up blank form

    I have a textbox on a form that I use to search for invoices. When I enter an invoice number and press the search button, an invoice form opens but does not contain any data. The invoice number is in the invoice table. Here is my code: rivate Sub cmdInvoiceSearch_Click() Dim strDocName As...
  17. metrodub

    Populating unbound control on form open

    The control source for cboPONumber is already set to POID in tblPO. Where else should a source be set?
  18. metrodub

    Populating unbound control on form open

    Didn't work. As cboPONumber is dependent on the unbound control (cboProjectCompany), when the form is opened cboPONumber (for some reason) is empty as well.
  19. metrodub

    Populating unbound control on form open

    I have a project form (frmProjects) that contains an unbound control. This control (cboProjectCompany) has a list of vendors/companies. A second dropdown (cboPONumber) contains account numbers associated with the chosen company. This control is bound to the project table, but the...

Part and Inventory Search

Back
Top