Rotate bar codes issue

Hi

Does anybody can help me with this issue: i want to rotate an EAN13 bar code after i generate it and the rotate function is not available as it was on X5.

I mention that i want to use it to generate a macro data base so i need it to be bar code readable, not changed to picture. I tried to copy and paste it speciale as picture. After that i can rotate it, but it doesn't help me because like this the macro doesn't recognize it as bar code...

thanks.

Parents
No Data
Reply
  • Dragossez said:

    Does anybody can help me with this issue: i want to rotate an EAN13 bar code after i generate it and the rotate function is not available as it was on X5.

    I work on X5 (15.2.0.695) and when barcode selected then "angle of rotation" is greyed out

    but you can rotate "bar code" object manually or via macro code (select bar code object a rum following macro)

    Sub Macro1()
        Dim OS As ShapeRange
        Set OS = ActiveSelectionRange 'barcode selected
        myangle = InputBox("Enter Angle")
        OS.Rotate myangle
    End Sub
Children