Recent content by thepatrik

  1. T

    Get column names from table

    Thank you for your answers!
  2. T

    Get column names from table

    Hi! Can I do a select query in order to get all the column names from a certain table in access?
  3. T

    Updating a form's detail records

    I solved it by manipulating the recordset directly: Me.RecordSource = SqlStr Thanx a bunch!
  4. T

    Updating a form's detail records

    Thank you for your reply. Some questions: How do I reach the form's recordset? Can I use something like Me.Recordset Do I need to dim the recordset variable as and ADODB.Recordset? Would you be kind enough to show me a code example? Thanks again...
  5. T

    Updating a form's detail records

    1. I pass the arguments using DoCmd.OpenForm and catch them with ID = CInt(Me.OpenArgs) in the other form. 2. Yes, the form seems to be directly bound to this table. 3. I have done some things in VB 6 in the passed, but I'm in no way new to programming.
  6. T

    Updating a form's detail records

    Hi! I'm a bit of a noob when it comes to this so, be aware. There are two forms. One (form A) that is containing a list box of all the occurrences from a specific table in the database. The other one (form B) also contains information about the same occurrences but in greater detail. In this...
Back
Top Bottom