Recent content by gagro

  1. G

    character spacing in report

    That is exactly what I am trying to do but I do not know how. I would be gratetfull if You can help me. So if You please send me the VBA code?
  2. G

    Changing Text Colour in Report

    in a code in Detail write this code. Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer) If name < 0 Then name.ForeColor = 255 Else name.ForeColor = 0 End If End Sub name is the name of Your Text Box in report 255 is for red colour, 0...
  3. G

    character spacing in report

    Thank You for helping me. I whant to customize characret spacing in a text box. For example "aaaa" is without spacing and "a a a a" have a single spacing between characters. It should be simple but I can´t find the way to do it. I need it to make some specific reports to put characrers in exact...
  4. G

    character spacing in report

    I want to customize character spacing in report but do not know how. Please help
  5. G

    Date Criteria

    forget Between in a criteria type: Between [Start Date] And [End Date] I hope it will help
Back
Top Bottom