Search found 224 matches: endmenu

Return to advanced search

Re: also error with btnbmp SHOWPOPUP

... ) ) Function Contextual_Menu( oBtn,oBrw,oDbf,cIniUser,cSection,oParent,oCont,lExport,lColConfig ) .... MENU oMenu POPUP .. ENDMENU return oMenu
by Silvio.Falconi
Mon Apr 01, 2024 10:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: also error with btnbmp SHOWPOPUP
Replies: 8
Views: 1708

Re: also error with btnbmp SHOWPOPUP

... Disp_Menu_Comuni(oParent,nRow,nCol,oDbf,oBrw,cSection,oCont) .....} Function Disp_Menu_Comuni(oParent,nRow,nCol,oDbf,oBrw,cSection,oCont) .... ENDMENU ACTIVATE POPUP oMenu OF oParent AT oBrw:nTop+nRow, oBrw:nLeft+nCol RETURN (NIL) and another on action Function MenuContextual(oControl,oBrw,oDbf,cIniUser,cSection,lExport,lColConfig,oParent,oCont ...
by Silvio.Falconi
Sun Mar 31, 2024 9:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: also error with btnbmp SHOWPOPUP
Replies: 8
Views: 1708

RIBBONBAR cachar el nombre del ACTION ejecutado

... '&Países' action CATPai() message 'Países' menuitem '&Entidades Federativas' [url][/url] action CATEst() message 'Entidades Federativas' endmenu La idea es saber que opción se ejecutan e registrando una bitácora de usuario. saludos y gracias de antemano. Joel Andujo
by Joel Andujo
Tue Jan 23, 2024 4:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: RIBBONBAR cachar el nombre del ACTION ejecutado
Replies: 3
Views: 193

Re: copy a row of xbrowse

... codsep ,; aCopy[ 8 ] := 0 ,; //recno aadd( oBrw:aArrayData, aCopy ),; oBrw:Unlock( .t. ), ; acopy:=NIL ,; oBrw:RefreshCurrent(), oBrw:SetFocus() ) ENDMENU but when I modify it the nRecord:= oBrowse:nArrayAt is the same
by Silvio.Falconi
Tue Dec 05, 2023 1:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5790

Problemas con Menu POPUP.

... MENUITEM ( AllTrim( oemtoansi(TablaMnu[i,3]) ) ) endif case TablaMnu[i,2] == 2 // separador SEPARATOR case TablaMnu[i,2] == 3 // final del menu ENDMENU endcase next ENDMENU return oMenu *----------------------------------------------------------------------------//
by José Camilo
Mon Jun 05, 2023 3:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas con Menu POPUP.
Replies: 2
Views: 205

Re: menu checked same menuitem

... ! ltipo1 ),; Maketree(oDbf,oBrw)) CHECKED SEPARATOR MENUITEM oItem2 PROMPT "Second" ACTION oItem2:SetCheck( ltipo2 := ! ltipo2 ) CHECKED ENDMENU return oMenu
by Silvio.Falconi
Tue Mar 14, 2023 1:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: menu checked same menuitem
Replies: 3
Views: 350

Re: menu checked same menuitem

... oItem:SetCheck( ltipo1 := ! ltipo1 ) CHECKED SEPARATOR MENUITEM oItem2 "Second" ACTION oItem2:SetCheck( ltipo2 := ! ltipo2 ) CHECKED ENDMENU return oMenu why it is not compiled ? Try Function BtnPop()local oItem1,oItem2MENU oMenu POPUPMENUITEM oItem1 PROMPT "First" ...
by cnavarro
Tue Mar 14, 2023 12:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: menu checked same menuitem
Replies: 3
Views: 350

menu checked same menuitem

... oItem:SetCheck( ltipo1 := ! ltipo1 ) CHECKED SEPARATOR MENUITEM oItem2 "Second" ACTION oItem2:SetCheck( ltipo2 := ! ltipo2 ) CHECKED ENDMENU return oMenu why it is not compiled ?
by Silvio.Falconi
Tue Mar 14, 2023 8:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: menu checked same menuitem
Replies: 3
Views: 350

Re: Focus error on this new project

... so that I can easily add a field to a xbrowse (debug mode) //-------------------------------------------------------------- MENU oMenu 2007 // ?? ENDMENU No idea, it was inside the sample program : Ribbon2 that I used as start sample Maybe not needed )) //-------------------------------------------------------------- ...
by Marc Venken
Thu Dec 09, 2021 2:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Focus error on this new project
Replies: 16
Views: 1166

Re: MENUITEM with BLOCK command executed TWICE.

...   MENUITEM "First"         MENU            MENUITEM "test" BLOCK { || MsgInfo( "Hello" ) }         ENDMENU      ENDMENUreturn oMenu  You are right Antonio, Please find ribbon.prg from samples directory and change this lines and compile.   MENU oMenu ...
by Horizon
Tue May 11, 2021 9:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MENUITEM with BLOCK command executed TWICE. (SOLVED)
Replies: 36
Views: 3195

MENUITEM with BLOCK command executed TWICE. (SOLVED)

Hi, I use MENU... ENDMENU like below. I use BLOCK command in MENUITEM.     MENU oFaizMenu POPUP 2007        MENUITEM "Parameters" ACTION Parametre_FAIZ()        SEPARATOR    FOR hh:=1 TO 19        hhh:="oApp:GParam:xADI_"+ALLTRIM(STR(hh))  ...
by Horizon
Mon May 10, 2021 9:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MENUITEM with BLOCK command executed TWICE. (SOLVED)
Replies: 36
Views: 3195

Re: Xbrowse : Setup configuration file

... 250, 1 ) ) MenuAddItem( cPrompt, , !oCol:lHide, ( len(::aDisplay) != 1 .or. ocol:nPos != 1 ), GenMenuBlock( ::aCols, nFor ) ) next ENDMENU if ::bkeydown<>nil.and.::nMarqueeStyle==MARQSTYLE_HIGHLCELL MENUITEM "更改字体颜色" ACTION (color1:=ChooseColor(),restorestate2(self,color1,color2)) ...
by ShumingWang
Sat Apr 17, 2021 12:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : Setup configuration file
Replies: 5
Views: 1218

Re: An easy way to make a tree-browse

... ENDMENU return oMenu2 // dynamic expand sub trees FUNCTION acc0502(otreeitem) local odb1,otreeitem2 if otreeitem:otree==nil odb1:=oserver:query("select ...
by ShumingWang
Wed Jul 31, 2019 1:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: An easy way to make a tree-browse
Replies: 17
Views: 3522

Re: Import Chinese Characters from XLS

... oMenu 2007 MENUITEM "&Functions" MENU MENUITEM "&A. Load Languages" ACTION _LoadLanguages( @oSay, @oSay2 ) SEPARATOR ENDMENU MENUITEM "&Exit" ACTION oWnd:End() ENDMENU DEFINE WINDOW oWnd TITLE "CDM Web Freight - Application Tools" ICON oIcon ...
by cdmmaui
Thu Feb 21, 2019 4:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Import Chinese Characters from XLS
Replies: 4
Views: 949

Re: Bug in TMenu

... of our menu     Example: MENU oMenu MENUITEM "First" MENU MENUITEM "My Test" BOLD MENUITEM "My Menu" ITALIC ENDMENU ENDMENU In this case, the BOLD and ITALIC clauses are ignored     But, if the menu is defined as: MENU oMenu COLORS All clauses are active, ...
by cnavarro
Sun Jan 06, 2019 12:19 am
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in TMenu [Fixed]
Replies: 9
Views: 3608
Next

Return to advanced search