hi,
im reading data from a user, using this data to search a database and then outputting the results to a subform which is in dataview format. the problem im having is im adding 3 additional columns to the dataview and although i can add them, i want the user to be able to edit these columns. heres my SQL statement at the moment:
Set rs1 = mysql_select("select DesignCode, Range, '' as StockLevel, '' as `Trigger`, '' as Issue from cslogcalls.designs where Range = '" & range & "';")
Set Forms!frmAddRange!frmSubRange.Form.Recordset = rs1
StockLevel, Trigger and Issue are the three columns that i want the user to be able to edit.
Any help is much appreciated.
Dee
Dee
im reading data from a user, using this data to search a database and then outputting the results to a subform which is in dataview format. the problem im having is im adding 3 additional columns to the dataview and although i can add them, i want the user to be able to edit these columns. heres my SQL statement at the moment:
Set rs1 = mysql_select("select DesignCode, Range, '' as StockLevel, '' as `Trigger`, '' as Issue from cslogcalls.designs where Range = '" & range & "';")
Set Forms!frmAddRange!frmSubRange.Form.Recordset = rs1
StockLevel, Trigger and Issue are the three columns that i want the user to be able to edit.
Any help is much appreciated.
Dee
Dee