Results 1 to 1 of 1

Thread: Wingdings on button is not shown

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Nov 2017
    Location
    Venray (NL)
    Posts
    69

    Default Wingdings on button is not shown

    Using in 19.0

    Code:
    Object oButton_Up is a Std_Button
            Set Label to "é"                            //Shows in studio this label but in application an up arrow
            Set Size to 14 20
            Set Location to 131 809
            Set Form_Typeface to "Wingdings" //yes obsolete - however does still works
            Set Form_FontHeight to 14
            Set peAnchors to anRight
    
    
            Procedure OnClick
            End_Object
    
    
    end_procedure
    When converting to 19.1 the above doesn't work. Now it shows also in the application the label "é".
    So we changed the code to the example below. In the studio the arrow is visible, but the button is empty in the application.

    Code:
    Object oButton_Up is a Std_Button
            Set Label to "é"                            //Shows in studio the up arrow but in application an empty button
            Set Size to 14 20
            Set Location to 131 809
            Set Typeface to "Wingdings"          
            Set Form_FontHeight to 14
            Set peAnchors to anRight
    
    
            Procedure OnClick
            End_Object
    
    
    end_procedure
    Last edited by Sjoerd; 19-Oct-2020 at 04:18 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •