How to add button on right side column of tally?

Discussion in 'Tally Developer' started by Amrata, Mar 29, 2018.

    
  1. Amrata

    Amrata New Member


    Hi,

    I am a beginner in developing TDLs, would appreciate if anyone could help me out with adding shortcut button on the right side column of tally, to be specific I want to add an shortcut button to display ledger table after going into accounting vouchers.

    Awaiting replies.
     


  2. Amit Kamdar

    Amit Kamdar Administrator Staff Member


    Search the forum.....many TDLs wherein they have added button on right side.... open code....learn and implement it... you will learn faster this way....cheers
     


  3. Amit Kamdar

    Amit Kamdar Administrator Staff Member


    define the Border.....

    e.g... border : thin top / right / left and so on
     


  4. SINTO PARAVA

    SINTO PARAVA Member


    [Button: AltF6_Koch_option]

    Title : if ##Koch_option then $$LocaleString:"Hide Cash Party" else $$LocaleString:"Show Cash Party"
    Key : Ctrl + F6
    Action:Set:Koch_option:not ##Koch_option



    [Variable: Koch_option]
    Type : Logical
    Persist : Yes


    [System:Variable]
    Koch_option:No


    [#Report: Sales Vouchers]
    Variable : Koch_option :String
    Local : Form : default :add: Button :AltF6_Koch_option

    [#Form: Day Book]
    Set: Koch_option:No
    add: Buttons : AltF6_Koch_option
     


Share This Page