chiuchimuN
Programmer
I want to make format changes in a report. Rather than create query after query, It would be nice if I could deal with the printing myself. Something like:
Report_CurrentRecord(Index as integer,Cancel as integer)
if Report.Field(3)="Payed" then
Text1.Color=vbBlue
End If
if Report.Field(4)=1 then
Text2="Late Fees Applied"
else
Text2="No Late fee"
End If
End Sub
Or
Report_CurrnetRecord(Index as integer, Cancel as integer)
if Index > 4000 then
Cancel=True
End Sub
Report_CurrentRecord(Index as integer,Cancel as integer)
if Report.Field(3)="Payed" then
Text1.Color=vbBlue
End If
if Report.Field(4)=1 then
Text2="Late Fees Applied"
else
Text2="No Late fee"
End If
End Sub
Or
Report_CurrnetRecord(Index as integer, Cancel as integer)
if Index > 4000 then
Cancel=True
End Sub