I am just about done with a template I have been working on, but ran into 2 minor issues. One is that I want to add ‘Notes’ to the workorder before printing it out. These would be for both us and the client to see. I noticed that there is a ‘Client notes’ button you can click on at the top of the screen. How would I get to show in thework orderwhen printing it out?
Also, I am trying to add the client city, state, and zip code on one line. I tried to get this to work based off how you got the Sample Detailed Service Workorder with Grand Total. I want it to look like this: Seattle, Wa 98105. I noticed you were using a script, so I copied it over, made sure the label name matched, and it opened without any errors. It just showed ‘combined address physical’. Here is the script in question:
private void OnBeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e)
{
xrLabel11.Text = string.Format("{0} , {1} {2}", DetailReport.GetCurrentColumnValue(“LT_Address_Label_City”), DetailReport.GetCurrentColumnValue(“LT_Address_Label_StateProv”), DetailReport.GetCurrentColumnValue(“LT_Address_Label_Postal”));
}
How can I get this working? Thanks!