Search results

  1. C

    Creating a report from a subform

    I have an Order form with tabs of suppliers Each supplier tab has a subform with: Product Code Product Name Quantity (left blank for the customer to fill in) Supplier I have a button Preview report and I would like to make a report from all of the products that the customer entered a...
  2. C

    Populate TextBox with Combo Box Selection

    Each product on a new line.
  3. C

    Populate TextBox with Combo Box Selection

    Well unfortunately it is still not working - Im trying to get both code and product name in the text box each on a new line. is there a way I can put my order form up so one can see it?
  4. C

    Populate TextBox with Combo Box Selection

    I have a form with a tabs of suppliers each tab having a ComboBox and text box. Right now I am working with the Supplier Vetoquinol Combo - VetCB Txtbox - VetTB each Supplier has its own table with products. In the Table Vetoquinol it shows: Supplier ProductCode ProductName VET 0122...
  5. C

    Drop down & List Box

    Well I was looking at a different way of doing it because nothing was working!! PLus the inventory is easier to manage by splitting into seperate tables. I was looking at thhis website http://www.fontstuff.com/access/acctut10.htm and was looking at the Multiple row source table and I...
  6. C

    Drop down & List Box

    So I have my first combo box set up.. PrivateSub cboCountry_AfterUpdate() On Error Resume Next SelectCase cboCountry.Value Case "France" cboCity.RowSource = "tblFrance" Case "United Kingdom" cboCity.RowSource = "tblUnitedKingdom" Case "United States" cboCity.RowSource =...
  7. C

    Drop down & List Box

    NEW TO ACCESS!!! PLEASE HELP:confused: Hi I am doing a form for work - somewhat like a PO. I have 2 Tables Suppliers(Table 1) SupplierID SupplierName BOE Boeh INT Invet PFZ Pfiz Products(Table2) ProductCode Product...
Back
Top Bottom