محمد 1986 قام بنشر يوليو 16, 2018 قام بنشر يوليو 16, 2018 محتاج كود يجعل مربع النص ظاهرا إذا كان يحتوي على قيمة ومخفي إذا كان لا يحتوي على قيمة في التقرير ولكن في الاكس
Shivan Rekany قام بنشر يوليو 16, 2018 قام بنشر يوليو 16, 2018 27 دقائق مضت, محمد 1986 said: محتاج كود يجعل مربع النص ظاهرا إذا كان يحتوي على قيمة ومخفي إذا كان لا يحتوي على قيمة في التقرير ولكن في الاكس اليك هذا Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer) Dim ctl As Control For Each ctl In Report.Controls If ctl.ControlType = acTextBox Then If IsNull(ctl) Then ctl.Visible = False Else ctl.Visible = True End If End If Next ctl End Sub
الردود الموصى بها
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.