The vb code powering one of my forms is giving me a compile error due to my use of the '%' character in the following statement:
fsubQtrDemand.Controls("textnp" + strTag).Value = rst!%_hr_peak
However '%_hr_peak' is the name of the column that I need to read from...is there a easy syntax change I need to make in order to get the code to compile? Any other solutions?
fsubQtrDemand.Controls("textnp" + strTag).Value = rst!%_hr_peak
However '%_hr_peak' is the name of the column that I need to read from...is there a easy syntax change I need to make in order to get the code to compile? Any other solutions?