Search found 4752 matches: menu

Return to advanced search

Erro Expor to Excel in xbrowse

Erro Expor to Excel Error BASE/1003 Vari vel nÆo existe: SELF Rotinas / Linhas Chamadas ============================= Chamada por..: C:\PROJETOS\MESTOQ\PRG_OBJ\CD_NFENTRADA.PRG => popmenu_dfe( 1882 ) Chamada por..: C:\PROJETOS\MESTOQ\PRG_OBJ\CD_NFENTRADA.PRG => (b)lanca_nota_fiscal( 606 ) Cham...
by INFORMAISVRB
Thu May 09, 2024 9:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Erro Expor to Excel in xbrowse
Replies: 2
Views: 90

Re: Slow EXE Launch.

... Defender (built-in antivirus) 1. Open Windows Defender Security Center. 2. Click on "Virus & threat protection" from the left menu. 3. Click on "Virus & threat protection settings". 4. Under "Exclusions", click on "Add or remove exclusions". ...
by karinha
Wed May 08, 2024 10:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Slow EXE Launch.
Replies: 8
Views: 225

Re: Slow EXE Launch.

... Defender (built-in antivirus) 1. Open Windows Defender Security Center. 2. Click on "Virus & threat protection" from the left menu. 3. Click on "Virus & threat protection settings". 4. Under "Exclusions", click on "Add or remove exclusions". ...
by Antonio Linares
Wed May 08, 2024 2:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Slow EXE Launch.
Replies: 8
Views: 225

Re: New txbrowse

... sets some columns (defined columns) you end user wants to select the columns to display because you don't like the columns displayed, in the menu there is the possibility to return back i.e. to display xbrowse with the previous columns, obviously the state is saved. xbrowse's setcolumns() ...
by Silvio.Falconi
Mon Apr 22, 2024 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 455

xbrowse problem with :bLClicked

i have a xbrowse with :SetMultiSelectCol() with bRClicked I associated a menupopup with :bLClicked I click on a row and select it I made the same with :bKeyChar ( space button)   :bLClicked := { |r,c,f,oBrw| if( oBrw:Mousecolpos( c ) ...
by Silvio.Falconi
Sun Apr 21, 2024 7:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse problem with :bLClicked
Replies: 5
Views: 125

SetMultiSelectCol() on line

I have an xbrowse created with an array without the :SetMultiSelectCol() and I have the ability to display a menupopup like this MENU oMenu POPUP if oBrw:IsSelectedRow() MENUITEM "Deselect the current row" action DeSelect_One_array(oBrw) MENUITEM "Deselect everything" ...
by Silvio.Falconi
Sat Apr 13, 2024 8:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetMultiSelectCol() on line
Replies: 5
Views: 229

Re: Ribbon y metro

Puedes asignarlo a algun boton de la Ribbon del menu de esta Algo asi: #include "FiveWin.ch"#INCLUDE "ribbon.CH"#include "ribbon.ch"#include "metro.ch"//----------------------------------------------------------------------------//function ...
by cmsoft
Wed Apr 03, 2024 8:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ribbon y metro
Replies: 9
Views: 6263

Re: xbrowse SelectRow method

... )    endif    oBrw:Refresh() return nil It seem run ok if I select two or three records and deselect one, the menu in the buttonbar remains unchanged because I added an if control IiF(LEN(oBrw:aSelected)==0,Btnbar(1,.....) thanks
by Silvio.Falconi
Mon Apr 01, 2024 10:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse SelectRow method
Replies: 3
Views: 712

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: 1757

Re: also error with btnbmp SHOWPOPUP

Nages, I have one popup on this codeblock oBrw:bRClicked := {|nRow,nCol| 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 (N...
by Silvio.Falconi
Sun Mar 31, 2024 9:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: also error with btnbmp SHOWPOPUP
Replies: 8
Views: 1757

Re: also error with btnbmp SHOWPOPUP

... PIXEL OF oDlg CENTER ;      ACTION PoupExec( Self )   ACTIVATE DIALOG oDlg CENTEREDreturn nilfunction PopupObject()   local oPop   MENU oPop POPUP      MENUITEM "One"      MENUITEM "Two"   ENDMENUreturn oPopfunction PoupExec( oBtn )   local oPop   MENU ...
by nageswaragunupudi
Sun Mar 31, 2024 4:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: also error with btnbmp SHOWPOPUP
Replies: 8
Views: 1757

Re: also error with btnbmp SHOWPOPUP

... function MenuContextual(...) should not return NIL, but should return a PopupMenu object. It looks like this function is returning NIL not a popup menu object. Please check the last line of this function. That is the exact reason for your error at this line in btnbmp.prg:       if ValType( ...
by nageswaragunupudi
Sun Mar 31, 2024 3:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: also error with btnbmp SHOWPOPUP
Replies: 8
Views: 1757

Re: also error with btnbmp SHOWPOPUP

... there is not any command at line 256 as you can see here https://i.postimg.cc/q7ydZMZR/kkkk.jpg on dispMenu_comuni I have a popup menu  Static Function Disp_Menu_Comuni(oParent,nRow,nCol,oDbf,oBrw,cSection,oCont)           local oMenu           local nFor, nLen          ...
by Silvio.Falconi
Sat Mar 30, 2024 2:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: also error with btnbmp SHOWPOPUP
Replies: 8
Views: 1757

Hide/show search system on a dialog - Resolved

I want to hide the xbrowse search consisting of two say controls, a get control and a combobox through a popup menu the test works but when Ichange the size of the xbrowse the get control and the combobox control remain active with lsearch :=.t. https://i.postimg.cc/Bv8vS4Vn/1.png ...
by Silvio.Falconi
Mon Mar 18, 2024 12:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide/show search system on a dialog - Resolved
Replies: 6
Views: 1228

Re: España: Normativa sancionadora sistemas informáticos

Publicados preliminares y borradores, pero ya se puede ver mejor como será: https://www.agenciatributaria.es/AEAT.desarrolladores/Desarrolladores/_menu_/Documentacion/IVA/Sistemas_Informaticos_de_Facturacion_y_Sistemas_VERI_FACTU/Sistemas_Informaticos_de_Facturacion_y_Sistemas_VERI_F...
by VictorCasajuana
Fri Mar 15, 2024 8:06 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: España: Normativa sancionadora sistemas informáticos
Replies: 95
Views: 29011
Next

Return to advanced search