Search results

  1. M

    vendor tables cascading problem

    Vendor tables Me.Products.RowSource = "SELECT ProductName FROM" "Products WHERE VendorID= " & Me.Categories _ "ORDER BY ProductName" Me.Products = Me.Products.ItemData (0) I have a database of all the following tables Candy list table Candy item Number UPC Number Item Number Product Name...
  2. M

    populating list boxes VBA

    I have a Hymnals table I am trying to link up with authors, so each author associated with the one list box displays a subform or second list box with the name of the song The problem I have with VBA is no guidence in terms of the language here is the coding I did for a author database so it...
  3. M

    populating list boxes

    Me.subform1.Form.RecordSource = "SELECT * FROM Products WHERE VendorID = " & cboVendorID.Column(1) This would be for the first combo box for my vendors, on my table vendor autonumber vendorname what would be the second combo box for my products? Product autonumber name Vendor number...
  4. M

    vendor tables

    Me.subform1.Form.RecordSource = "SELECT * FROM Products WHERE VendorID = " & cboVendorID.Column(1) This would be for the first combo box for my vendors, on my table vendor autonumber vendorname what would be the second combo box for my products? Product autonumber name Vendor number...
  5. M

    lookup wizard in table

    I have a table named products for candy I posted before. I can only get the list box to link with the subform it I set the lookup wizard in the table view to get it to link with the list box and subform. also I have the relationships set to product auto number and catagory autonumber...
  6. M

    products table

    Re: products table coding Where do I add this in This assumes that vendorID is the 2nd column of the combo box - the first column would be cboVendorID.Column(0) In the vba coding? Regards
  7. M

    products table

    I have a database of all the following tables Candy list table Candy item Number UPC Number Item Number Product Name Catagory Number Subcatagory Number Vendor Number Distributor Number Department Number Picture Catagory Table Catagory Number Catagory Name Distributor Table Distributor Number...
  8. M

    lookup wizard fields table

    Thanks, I could't remember because the last database I set up was last year. Anyway, I see what you mean that for the products table for the catagory I will just have number 3 for example if the autonumber of the caragory table let's say the autonumber number 3 is chocolate candy, then I will...
  9. M

    lookup wizard fields table

    I have a products database I have a table name of products, catagory, subcatagory number Also a another related table that has catagory name associated with auto number same with subcatagory number With the Products table I entered in everything like number 1, associated with the auto numbr...
  10. M

    lookup wizard fields table

    I have a products database I have a table name of products, catagory, subcatagory number Also a another related table that has catagory name associated with auto number same with subcatagory number With the Products table I entered in everything like number 1, associated with the auto numbr...
  11. M

    hymnal and song db list box duplicate records

    I have the fields set for the songs field, from the hymnal songinfo table which includes name of song, hymnal number, author and key etc. The only thing is their is more then one hymnal associated with each song so it displays duplicate values for all of those songs when I program the list box...
  12. M

    hymnal and song subform

    I live in the Northern New Jersey area, and have done database developing. However I am working on a database for my music hymnals and songs. I have two tables one for music hymnals the other one for songs Music Hymnal Hymnal Number ID Name of Hymnal Hymnal Song Hymnal Name which I think is...
  13. M

    acess vba book

    Has anyone read the access vba book http://www.amazon.co.uk/Learn-Access-2003-Smart-Method/dp/0955459907/ref=pd_sim_b_4/279-9324618-4664561 I am trying to populate two list boxes and am having trouble with the coding. Will this book teach me what I need to know?
  14. M

    Microsoft access computer classes

    I live in the Northern, New Jersey area. Does anyone know where I can take a one week computer class, that will teach me the VBA language as well to populate the cascading list boxes, to populate boxes that will only display for example the books associated with that author? I find that I...
  15. M

    Book Library list boxes programed

    "FROM tblAuthorName " & _ "WHERE AuthorType = '" & Combo18.Value & _ "' ORDER BY NamID;" currently your SQL looks like this: "Select NamID, AuthorName FROM tblAuthorName WHERE AuthorType = myAuthorType ORDER BY NamID;" VB will take myAuthorType as a variable and generate an error. you want it...
  16. M

    Book Library list boxes programed

    http://www.fontstuff.com/access/acctut10.htm Is an example website that explains this procedure
  17. M

    Book Library list boxes programed

    I have tables with the following fields Tablebookmaintable fields ID Book Book Name Author Number Catagory Subcatagory Extra Catagory Format Pages ISBN Website Publisher Number Publisher Website Copyright date picture Authorname Table Author ID Author lastname Author firstname Publisher...
  18. M

    book library sample

    book populating list boxes I want to learn a VBA book on how to populate list boxes The most popular database I have is a books database I want to populate the name of book with author associated with it. So it only displays the book with the author. Does anyone know what book could teach me...
  19. M

    book library sample

    This is what I want to do have one list box for Title, the other eone for author, and the other one for Publisher so those three cascade http://www.fontstuff.com/access/acctut10.htm 'Is a good example Regards, Michael Van Der Stad Any examples would be very appreciated. I've spend 5 years...
  20. M

    vba class

    http://www.fontstuff.com/access/acctut10.htm Is the link How do I set it up so do I use Country as the name of book and city and state, city/author and state/publisher? I am not to sure if this will work. All I want to do is to populate two list boxes together? by cascading them. Regards...
Back
Top Bottom