pre cutover push
This commit is contained in:
@ -312,19 +312,19 @@ return
|
||||
|
||||
|
||||
RefreshRowColors:
|
||||
|
||||
RDSRptCtrl = @Window : '.OLE_RPT_RDS_LIST'
|
||||
NumRDS = DCount(RDSList, @FM)
|
||||
|
||||
// Color every other cell to increase row distinguishability
|
||||
Colors = ''
|
||||
If NumRDS GT 1 then
|
||||
For RowNo = 1 To NumRDS
|
||||
If Mod(RowNo, 2) EQ 1 then Colors<RowNo> = RGB(231, 243, 254) else Null ; // light blue
|
||||
Next RowNo
|
||||
Set_Property(RDSRptCtrl, 'OLE.RecordColors', Colors)
|
||||
If Assigned(RDSList) then
|
||||
RDSRptCtrl = @Window : '.OLE_RPT_RDS_LIST'
|
||||
NumRDS = DCount(RDSList, @FM)
|
||||
|
||||
// Color every other cell to increase row distinguishability
|
||||
Colors = ''
|
||||
If NumRDS GT 1 then
|
||||
For RowNo = 1 To NumRDS
|
||||
If Mod(RowNo, 2) EQ 1 then Colors<RowNo> = RGB(231, 243, 254) else Null ; // light blue
|
||||
Next RowNo
|
||||
Set_Property(RDSRptCtrl, 'OLE.RecordColors', Colors)
|
||||
end
|
||||
end
|
||||
|
||||
// Clear any selected rows
|
||||
SelPos = ''
|
||||
Set_Property(@Window : '.OLE_RPT_RDS_LIST', 'OLE.SelPos', SelPos)
|
||||
|
Reference in New Issue
Block a user