Recent content by yogi

  1. Y

    binding collection error

    does anyone know exactly was this error is, and how to resolve it. i have a check box and a text box that are related by what the answer is in the check box. when I changed record example if current record had data in the text box and the record after doesn't it give me the binding collection...
  2. Y

    recordsource ,BOF EOF

    thank you very much
  3. Y

    recordsource ,BOF EOF

    Hi there I created a table and I'm using the recordsource on the form to access my table and the field that I need. I have put some button on my form next record and previous record. How do I check for BOF or EOf inside those button without using a recordset? Thanks
  4. Y

    relation between table

    like take for example that I have 5 tables that I wanted to link together. wouldn't a query get a error for exceding the number of fields what do you means by form bounds? how would i do this in VB????
  5. Y

    fields doesn't show

    how do you do this?
  6. Y

    relation between table

    Is there a way to have a relation between tables without using a recordset I want to be able to delete or add or modify a record thru multile table without using a recordset is it possible????
  7. Y

    fields doesn't show

    I added a new field into a table. I have a button on my form that I want to put code behind it. When I try to used this new fields its doesn'T show at all. ex if i added the field test, i dont see it when i say " me."
  8. Y

    how to check for a value???

    thanks for the info
  9. Y

    how to check for a value???

    trying to populate a check box using values from a recordset
  10. Y

    how to check for a value???

    varname = test1, test2 for x = 1 to 2 flda = "test" & x if flda = "1" then flag=true else flag=flase endif next I have new variable name call test1 and test2. I want to check if the value of both of these fields are equal to 1. The code above its not working and I'm missing...
  11. Y

    display multiple column using a combo box in vb

    using your example, could you display all column
  12. Y

    display multiple column using a combo box in vb

    i'm trying to display on the screen 2 columns using a combo box after I made my selection. ( a list box you can display more than 1 columns) name company contact mr x xxx 234 mr y yyy 123 I know how to populate the combo box but how do you display...
  13. Y

    combo box items

    combo box i'm trying to display on the screen 2 columns using a combo box after I made my selection. ( a list box you can display more than 1 columns) name company contact mr x xxx 234 mr y yyy 123 I know how to populate the combo box but how do you...
  14. Y

    structure of a access table

    Does anyone have a idea how to create a record layout from a access table using code only? thanks
  15. Y

    structure field name

    i could used this code to go thru a table or loop thru every fields.
Top Bottom