I have a form that is based on and SQL query, i was hoping that i would be able to update some of the details in the form, mainly a comments text box for each entry in the DB. I have the properties set to allow edits, but it is not helping i just cant type anything into the textbox. I am wondering if this has something to do with the SQL as i did not write that part myself, im not sure what the group by bit does
here is the SQL
Any advice would be appreciated
here is the SQL
Code:
SELECT [mp3].[mp3id], [mp3].[File], [mp3].[location], [mp3].[Artist], [mp3].[Information], [mp3].[filename], [mp3].[Information] FROM mp3 INNER JOIN mp3voice ON [mp3].[mp3id]=[mp3voice].[mp3id] WHERE ([mp3voice].[Voice Type] In ([Forms]![Form1]![selected_type_1],[Forms]![Form1]![selected_type_2],[Forms]![Form1]![selected_type_3],[Forms]![Form1]![selected_type_4],[Forms]![Form1]![selected_type_5],[Forms]![Form1]![selected_type_6],[Forms]![Form1]![selected_type_7],[Forms]![Form1]![selected_type_8],[Forms]![Form1]![selected_type_9],[Forms]![Form1]![selected_type_10],[Forms]![Form1]![selected_type_11])) GROUP BY [mp3].[mp3id], [mp3].[File], [mp3].[location], [mp3].[Artist], [mp3].[Information], [mp3].[filename] HAVING (((Sum(1))=[Forms]![Form1]![HiddenObject]));
Any advice would be appreciated
Comment