Hakan
Please try the following:
Define your menus in two functions separately
Code: Select all
Static Function MnuHazirlama()
// Or, if you use this menus in others modules ( PRGs )
// Function MnuHazirlama()
//Not use this if oToplu_UDF_Hazirlama variable is defined static
//local oToplu_UDF_Hazirlama
MENU oToplu_UDF_Hazirlama POPUP 2010
MENUITEM "List1" ACTION UDF_Rapor()
MENUITEM "List2" ACTION Toplu_UDF()
MENUITEM "List3" ACTION Toplu_PDF()
MENUITEM "List4" ACTION Toplu_UDFT()
MENUITEM "List5" ACTION Toplu_UDFT1()
MENUITEM "List6" ACTION Toplu_UDFT2()
MENUITEM "List7" ACTION Toplu_UDFT3()
ENDMENU
Return oToplu_UDF_Hazirlama
Static Function MnuRapolar()
// Or, if you use this menus in others modules ( PRGs )
// Function MnuRapolar()
//Not use this if oOzel_Raporlar variable is defined static
//local oOzel_Raporlar
MENU oOzel_Raporlar POPUP 2010
MENUITEM "Report1" ACTION GenelRapor_Ozel1()
MENUITEM "Report2" ACTION GenelRapor_Ozel2()
MENU
MENUITEM "Excel" ACTION GenelRapor_Ozel2(2)
MENUITEM "Printer" ACTION GenelRapor_Ozel2(1)
ENDMENU // <<<<---- line 1554
MENUITEM "Report3" ACTION GenelRapor_Ozel3()
MENUITEM "Report4" ACTION GenelRapor_Ozel4()
MENUITEM "Report5" ACTION oApp:RUN("MERAPOR()")
MENUITEM "Report6" ACTION oApp:RUN("RAPOR_258()")
SEPARATOR
MENUITEM "Report7" ACTION GenelRapor_Ozel11()
MENUITEM "Report8" ACTION GenelRapor_Ozel12()
MENUITEM "Report9" ACTION GenelRapor_Ozel13()
ENDMENU
Return oOzel_Raporlar
And, when you need to use these menus, call the corresponding function
Code: Select all
... MENU MnuHazirlama() ...
// or
... MENU MnuRapolar() ...
Please, tell me if run Ok, thanks
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.