Search results

  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

    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
  3. 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????
  4. 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."
  5. 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...
  6. 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...
  7. 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
  8. Y

    structure field name

    I have 2 tables. 1 tables cointains field_name 2 tables contains data I want to create a query that I could use the field_name from table 1 (loop thru table1 )to see if the field_name exist in table 2 thanks
  9. Y

    multi user

    I've create a form with subform that work like a charm, now they want in a multi user environment. What is the best way to achive this? any suggestion would be great. thanks
  10. Y

    left and right arrow keys

    I would like to have a event for the left and right arrow keys, does anyone know how to do this?
  11. Y

    check for eof in a query

    Hi everyone when I open my form i SET UP A QUERY IN THE CONTROL SOURCE that would only selected records that I wanted. That part work fine. The problem that I have its when i get to the last record , how do you determine that you are at the last filtered record?
  12. Y

    filter a table

    what is the best way to filter a table?
  13. Y

    filter records

    I have 2 forms. The first form is used to coding and the next on is for verification. On the coding form i have a check mark for verification. On the verification form i just want to filter the check mark for verification, its work sort of. It will filter only the check mark but it will look...
  14. Y

    manipulate a pivot table

    Is there a way that you can manipulate a pivot table, (example adding more item in a list) after the pivot table is created.
  15. Y

    pivot table

    what is th best way to populate a new formatted table from a pivot table? thanks
  16. Y

    adding new field to a table

    I just added a new field into a table. when i try to used in the vb code (me.test as a example) the field doesn't show up in the list when i say me. . i HAVE NO IDEA WHY. Doesn't anyone has a idea why? thanks for your help.
  17. Y

    long text field

    I have field that are 254 bytes long. I"m trying to display in a form. I would like to wrap that text, so that a user can see it properly. does anyone know how to do this? I've try grow , still doesn't work any help would be very greatfull thanks
  18. Y

    pivot table and access

    when i create a pivot table with table in access it will only show rows that contains value ex age 0 1 2 province 11,12,13,14 i want to put a value of 0 if a condition doesnT appear, is it possible? let presume there is no value for this condition of age 1 and province...
Back
Top Bottom