Kod İle Raporda Grup Üst Bilgisi Ayarlama

1 2
08/01/2020, 13:55

accessman

şöyle bir kod buldum

Private Sub Report_Open(Cancel As Integer)
'*** This line here ***
Me.GroupLevel(1).ControlSource = PlanningReportSortField
'*** Yes, that one ***

Me.Caption = PlanningReportTitle
lblReportTitle.Caption = PlanningReportTitle
lblCriteria.Caption = PlanningReportCriteria

'This bit sets the data binding on the first of four text boxes on the detail section - works OK
txtField1.ControlSource = PlanningReportField1
Select Case PlanningReportField1
Case "iipLOCDate": lblField1.Caption = "LOC Date"
Case "iipLastReviewDate": lblField1.Caption = "Last Review"
Case "orgNoSiteEmployees": lblField1.Caption = "No Emps"
End Select



Private Sub Report_Open(Cancel As Integer)
    Me.GroupLevel(0).ControlSource  = Forms!SortForm!txtPromptYou
End Sub
08/01/2020, 13:59

berduş

benim dediğim yöntemde rapor açıldıktan sonra çalışıp değişiklik yapması gerekiyordu
çalışmadı mı?
burada rapor açılırken gruplamayı formdan alıyor
08/01/2020, 14:01

berduş

isterseniz rapora etiket ekleyip etiket tıklama olayına da ekleyebilirsiniz
08/01/2020, 14:48

accessman

teşekkürler 
https://accesstr.net/konu-customize-a-re...ntime.html
vaktim olsa ve de yapabilecek bilgim olsa bunu program haline getirmek isterdim
1 2