Hello all,
This is my first post/question on here, hope I can make myself clear :)
My employer wants me to build a storage management system which shows him his current supply of parts.
What I am trying to do is this:
I have a datasheet-subform on a normal form.
This subform shows data from a table (named searchtable).
The mainform has some controls to filter the data in the subform, all of that works.
Now I would like to click one of the visible records in the subform and copy that specific record to a new table (FetchTable) by pressing a button.
The searchtable contains the following columns:
Barcode | Description | Supply | Location
-------------------------------------------
text | text | double | text
The barcode column contains a unique key for each item.
I have read the solutions of doing this while using a textbox containing the key and a query with a WHERE clause.
Is there a way to click on a row and copy the selected row?
This is my first post/question on here, hope I can make myself clear :)
My employer wants me to build a storage management system which shows him his current supply of parts.
What I am trying to do is this:
I have a datasheet-subform on a normal form.
This subform shows data from a table (named searchtable).
The mainform has some controls to filter the data in the subform, all of that works.
Now I would like to click one of the visible records in the subform and copy that specific record to a new table (FetchTable) by pressing a button.
The searchtable contains the following columns:
Barcode | Description | Supply | Location
-------------------------------------------
text | text | double | text
The barcode column contains a unique key for each item.
I have read the solutions of doing this while using a textbox containing the key and a query with a WHERE clause.
Is there a way to click on a row and copy the selected row?
Comment