Search found 23 matches: ocont

Return to advanced search

Re: also error with btnbmp SHOWPOPUP

... Contextual_Menu( Self,oBrw,oDbf,cIniUser,cSection,oDlg,aBtnBrow[4] ) ) 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

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 ...
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

Re: explorerbar Menu

... I can make this DEFINE VMENUITEM OF oBar ; CAPTION "Elenco movimenti" ; IMAGE "GRID_IMPRIMIR2" ; MENU Stampa_Mov(oApp():oGrid,oCont,oBar); LEFT 10 where Stampa_Mov is a normal function with menupopup type Function Stampa_Mov(oGrid,oCont,oBar) Local oMenuStampa MENU oMenuStampa ...
by Silvio.Falconi
Fri Feb 09, 2018 9:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: explorerbar Menu
Replies: 2
Views: 648

Error en XBROWSE

HOla amigos Utilizo ODBC para acceder a una db en SLQLITE cargo los datos de esta manera oRs1 := FW_OpenRecordSet( oConT, "SELECT * FROM datos" ) luego uso un xbrowse... al recargar los datos hago un oRs1:Refresh() y sale este error Error description: (DOS Error -2147352570) ...
by Willi Quintana
Thu Nov 30, 2017 4:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en XBROWSE
Replies: 2
Views: 643

ERROR WITH TECLAS IN XBROWSE

I have oApp():oGrid:bKeyDown := {|nKey| PrTecla(nKey,oApp():oGrid,oCont,oApp():oDlg) } function PrTecla(nKey,oGrid,oCont,oDlg)Do case   case nKey==VK_RETURN      PrEdita(oGrid,2,oCont,oDlg)   case nKey==VK_INSERT  ...
by Silvio.Falconi
Tue Dec 04, 2012 12:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ERROR WITH TECLAS IN XBROWSE
Replies: 0
Views: 307

Re: Difference xBrowse ::KeyDown and ::KeyChar

oApp():oGrid:bKeyDown := {|nKey| Stephan_Tecla(nKey,oApp():oGrid,oCont,oApp():oDlg ) } function Stephan_Tecla(nKey,oGrid,oCont,oDlg) Do case case nKey==VK_RETURN Function for edit record case nKey==VK_INSERT function for add record case nKey==VK_DELETE function ...
by Eoeo
Mon Jul 02, 2012 1:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Difference xBrowse ::KeyDown and ::KeyChar
Replies: 3
Views: 893

Re: Clase TInforme de alanit

... code of josè, if you not have it you can use texplorerbar class it 's easy oBar:= tPanel(...) activate dialog NOWAIT On INIT BuildEplorer(oBar,oCont) ... Function BuildEplorer(oBar,oCont) oBar : texplorer(...) oCont:= oBar:AddPanel(...) return nil I hope you understood me
by Silvio
Mon Mar 07, 2011 10:21 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase TInforme de alanit
Replies: 16
Views: 6808

Re: strange error on xbrowse

... // :bClrStd := { || Colores(oDVds) } // :bClrSelFocus = { || { 0, DARKCYAN } } // :bClrSel ={ || { 0, DARKCYAN } } :bChange :={ || (RefreshCont(oCont,oDVds)) } END oApp():oGrid:CreateFromCode()
by Silvio
Thu Jan 13, 2011 9:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: strange error on xbrowse
Replies: 4
Views: 971

Error with TexplorerBar

... BuildPanel(nMod) oApp():oTaskPanel := TExplorerBar():New( 0, 0,oApp():oPanelLeft:nwidth-5, oApp():oPanelLeft:nbottom, oApp():oPanelLeft ) oApp():oCont = oApp():oTaskPanel:AddPanel( "Customer", "c:\work\fwh\bitmaps\32x32\people.bmp",1 ) oApp():oCont:lSpecial = .T. oApp():oCont2 ...
by Silvio
Wed Nov 17, 2010 7:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error with TexplorerBar
Replies: 2
Views: 508

Error with splitter

... + oApp():oTab:nHeight PIXEL ; OF oApp():oDlg ; _3DLOOK ; UPDATE ACTIVATE DIALOG oApp():oDlg NOWAIT ; ON INIT BarExplorer(oApp():oExBar,oApp():oCont,"CU") ; ON PAINT ( oApp():oSplit:AdjClient()) How I can resolve this graphic error ?
by MdaSolution
Thu Jul 08, 2010 10:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error with splitter
Replies: 3
Views: 571

TO NAGES Also Windows Seven Error Bitmap on Xbrowse

... , oApp():oTab:nOption:=3,oApp():oTab:refresh()) } WITH OBJECT oApp():oGrid :bChange := { || (nRecSel := oApp():oGrid:BookMark,RefreshCont(oApp:oCont,oDHard)) } :nRowDividerStyle := LINESTYLE_NOLINES :nColDividerStyle := LINESTYLE_NOLINES :nMarqueeStyle := MARQSTYLE_HIGHLROW :nStretchCol = STRETCHCOL_LAST ...
by MdaSolution
Sun Jul 04, 2010 5:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TO NAGES Also Windows Seven Error Bitmap on Xbrowse
Replies: 11
Views: 2246

Re: xbrtree sample

... (oDHardware)->modello , nrecord } endif (oDHardware)->(DBSKIP()) enddo ENDTREE ENDTREE return oTree STAT FUNCTION RefreshCont(oCont,cdbf) oApp():oCont:cTitle:=((oDHardware)->Type ):Cargo[3] oApp():oCont:refresh() return NIL it make error Application =========== Path and ...
by Silvio
Wed Feb 10, 2010 7:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrtree sample
Replies: 10
Views: 2423

Re: xbrtree sample

... AND FOR THE SECOND QUESTION ? i USE oApp():oGrid:bChange :={ || (RefreshCont(oApp:oCont,oDHardware),) } STAT FUNCTION RefreshCont(oCont,cdbf) oApp():oCont:cTitle:="Hardware "+tran((cdbf)->(OrdKeyNo()),'@E 999999')+" ...
by Silvio
Wed Feb 10, 2010 6:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrtree sample
Replies: 10
Views: 2423

Re: xbrtree sample

... the xbrowse. He is the expert on that issue...." AND THERE IS ANOTHER QUESTION NOW WHEN i MAKE oApp():oGrid:bChange :={ || (RefreshCont(oApp:oCont,oDHardware),) } STAT FUNCTION RefreshCont(oCont,cdbf) oApp():oCont:cTitle:="Hardware "+tran((cdbf)->(OrdKeyNo()),'@E 999999')+" ...
by Silvio
Wed Feb 10, 2010 6:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrtree sample
Replies: 10
Views: 2423

Help Mister Andres Reyes

... i, 4 ] oCol:nHeadStrAlign := aBrowse[ i, 4 ] NEXT oApp():oGrid:SetRDD() oApp():oGrid:CreateFromCode() oApp():oGrid:bChange := { || RefreshCont(oCont,"CU") } oApp():oGrid:nRowHeight := 21 oApp():oGrid:RestoreState( cState ) CU->(DbSetOrder(nOrder)) CU->(DbGoTo(nRecno)) oBar := ...
by Silvio
Wed Dec 31, 2008 2:24 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Help Mister Andres Reyes
Replies: 3
Views: 817
Next

Return to advanced search