Is it Possible to Show Purchase Register at GateWay Of Tally

Discussion in 'Requests' started by HAROON2015, Mar 19, 2017.

    
  1. HAROON2015

    HAROON2015 Member


    hi,
    i use shortcut to go to the purchase register D------A------P

    i want to show this ledger at Gateway of Tally

    thank you in advance
     


  2. HAROON2015

    HAROON2015 Member


    Found a solution on google
    posting here for others

    ;;Objective:-
    ;;Using "Control" attribute at Menu level
    ;;=========================================================================

    ;;Global formula definition
    [System: Formula]
    locSR : $$LocaleString:"Sales Register"
    locPR : $$LocaleString:"Purchase Register"

    ;;Add a new menu-item to the Gateway of Tally
    [#Menu:Gateway of Tally]
    ;;1st Menu option
    Item: @@locSR : Display : Sales Register

    ;;2nd Menu option.
    Item: @@locPR : Display : Purchase Register

    ;;Item: Blank
    ;;Key Item: @@locQuit

    Control : @@locSR : ##ShowSR
    Control : @@locPR : ##ShowPR

    [System: Variable]
    ShowSR : Yes

    ;;This will hide the 2nd menu-option
    ShowPR : YES

    [Variable: ShowSR]
    Type : Logical

    [Variable: ShowPR]
    Type : Logical
     


Share This Page