Printing Multiple UB-04 Forms

Index

    Printing Multiple UB-04 Forms

    To print more than one UB-04 Forms using one print job use the Data property of the UB04Form class.

    Step 1 – Initialize DataTo Print

    UB04FormData ubData1 = new UB04FormData();
    ubData1.Box1A = “Jane Smith”;
     
    UB04FormData ubData2 = new UB04FormData();
    ubData2.Box1A = “John Smith”;

    Step 2 – Print the Forms

    UB04Form ubForm = new UB04Form();
    ubForm.Data.Add(ubData1);
    ubForm.Data.Add(ubData2);
     
    ubForm.Print();
    in UB – 04 Form
    Did this article answer your question?