my update query, when run says its going to update X # of rows but when I check the table after the update the values haven't changed, I have checked my varables that I passing to the query with msgbox [string var} to varvify that an actual # is being passed and that is correct. here is my query
Thanks for helping
Code:
DoCmd.RunSQL "UPDATE IndividualSettingsTbl SET " & _ "IndividualSettingsTbl.LabelBKColor = '" & stLabelBoxBC & "'And IndividualSettingsTbl.LabelForeColor = '" & stLabelBoxFC & "' " & _ "And IndividualSettingsTbl.LabelFontStyle = '" & stLabelFont & "' And IndividualSettingsTbl.TextComboBKColor = '" & stTextBoxBC & "' " & _ "And IndividualSettingsTbl.TextComboForeColor = '" & stTextBoxFC & "' And IndividualSettingsTbl.TextComboFontStyle = '" & stTextFont & "' " & _ "Where IndividualSettingsTbl.UserName = '" & AccountName & "';"
Comment