B
|
bburden author 9/8/2006 |
This is the function that I am using in my aspfunction. Its almost working at least it is putting text in the right place in MS Access. The only problem I am having now is that instead of it summing the 2 fields in the total field it just adding both of the numbers. Can I get a little help please. Case EDIT_FORMAT_TEXT_FIELD stronchange = "" if sFieldName = "material_sum" or sFieldName = "labor_sum" then stronchange = "onchange = ""java script:editform.total.value = editform.materialsum.value" & " + editform.laborsum.value;""" end if BuildEditControl = "<input type=text name=""" & sFieldName & """" & GetEditParams(sFieldName) & " value=""" & sDefault & """" & stronchange & ">" Thanks
|