Search results

  1. A

    Help Writing a Loop

    I think it might be because "lbl" is not sufficient? There are 13 labels to be filled out and they are named lbl, lbl1, lbl2, lbl3, lbl4, lbl5, etc...your code does not address that?
  2. A

    Help Writing a Loop

    this doesnt work. it gets a error "no current record" also, i changed your code to .movenext...not movefirst
  3. A

    Help Writing a Loop

    Re: Loop Help I have a record set that is based on a query i ran (strBAV)...now, im trying to take the "Core Attribute Value" field from this query record set and fil out 13 labels with the 13 results from this field. So say the results are "red," "orange," "yellow," etc...those records become...
  4. A

    Help Writing a Loop

    Loop Help I want to turn this into a loop instead of writing it out 13 times... Can someone help me? rstBrickAttributeValues.MoveFirst strBAV = rstBrickAttributeValues!CoreAttributeSpecificTypeD escription Me.lbl.Caption = strBAV rstBrickAttributeValues.MoveNext strBAV =...
  5. A

    Help Writing a Loop

    I want to turn this into a loop instead of writing it out 13 times... Can someone help me? rstBrickAttributeValues.MoveFirst strBAV = rstBrickAttributeValues!CoreAttributeSpecificTypeDescription Me.lbl.Caption = strBAV rstBrickAttributeValues.MoveNext strBAV =...
  6. A

    Help! Cascading combo box

    Is there a way to write it so that i don't have to individually define which boxes are visible for each possible case (for each possible selection made in the trigger combo box). I have already defined the relationships in the database so i feel like there should be a way to do this. I just cant...
  7. A

    Help! Cascading combo box

    can you give me an example of this trigger or what it would look like?
  8. A

    Help! Cascading combo box

    I know how to toggle them visible using VBA. But i need it to populate the correct number of fields and make them visible automatically for a very large set of Brick Codes and possible Brick Attributes and Attribute Values. It all needs to be automatic. I don't know if you quite understand what...
  9. A

    Help! Cascading combo box

    My only concern is the appearance. For example, if I chose the Brick Code "Bread (Shelf Stable)" I need 7 combo boxes for the brick attributes and their values whereas for the Brick "Chicken - Prepared/Processed" I need 11 combo boxes for the brick attributes and their values. Is this possible...
  10. A

    Help! Cascading combo box

    the Brick (core) attribute should be the combo box labels and the Brick (core) attribute values should be the options within those newly created combo boxes
  11. A

    Help! Cascading combo box

    create. in resposne to the Selected Brick
  12. A

    Help! Cascading combo box

    I did. None of them solved what i was asking for. I know how to make dependent cascading combo boxes. But i need the result of one to create a varying number of other cascading combo boxes.
  13. A

    Syntax Error Help

    You rock! That was it, thank you! What exactly did that change about what my code was saying?
  14. A

    Syntax Error Help

    Anyone see the syntax error (missing operator)? Me.cboBrickAttributeValue.RowSource = " SELECT tblBrickAttributeValue.CoreAttributeValueDescription, tblBrickAttributeValue.CoreAttributeValueCode, tblBrickAttributeValue.CoreAttributeSpecificTypeDescription FROM tblBrickAttributeValue " & _...
  15. A

    Help! Cascading combo box

    I am totally new to Visual Basic. I have dependent cascading combo boxes setup. The hierarchy goes: Segment Family Class Brick Now, I need the value in the Brick field to create a varying number of other cascading combo boxes. They are the Brick Attributes. The brick attributes are the labels...
Back
Top Bottom