company logo on application window

ASTAST Member Posts: 108
hello,
It is possible to create e.g. company logo on application windows? It should appear like background. :-k

Comments

  • amunozsuamunozsu Member Posts: 30
    Hi,

    You can try this:

    1.- Create a new form and change the following properties:
    - CaptionBar: None
    - Sizeable: No
    - Editable: No
    - MaximizedOnOpen: Yes
    - SourceTable: Company Information
    - SaveTableView: No
    - SavePosAndSize: No
    Place into it the logo of the company (field Picture)

    2.- In Codeunit1, at the bottom of the LoginStart Function place this code:
    IF GUIALLOWED THEN
       newForm.RUN();
    
  • ASTAST Member Posts: 108
    Thanks - that is works :) . I'm wondering if I can do this buy modifying some navision file.
Sign In or Register to comment.