Search found 49 matches: nlevel

Return to advanced search

Re: download iPhone Photo connect to PC

... for Fivewin --- still not sure about Concept of Fivewin in Sample elixir.prg "Cargo" use only String while HMG use Array with {String,nLevel} these HMG Function are based on nLevel which seem missing under Fivewin HMG Tree_1.ParentValue( nValue )  --> nValue | NIL  HMG Tree_1.GetPathValue( ...
by Jimmy
Sun Nov 27, 2022 5:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: download iPhone Photo connect to PC
Replies: 14
Views: 989

Re: Color of the oTree

Works. Thanks. I color the row for ::otree:nlevel=1, but it would be more convenient to combine columns in this row. I tried using column merging from the XBRUSER.PRG example Everything works, but the column separators are visible :cry:
by Natter
Sun May 17, 2020 7:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Color of the oTree
Replies: 4
Views: 1596

Re: Color of the oTree

You can use codeblocks for colors and fonts based on oBrw:oTreeItem:nLevel or any other datas of oBrw:oTreeItem
by nageswaragunupudi
Sun May 17, 2020 5:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Color of the oTree
Replies: 4
Views: 1596

Re: An easy way to make a tree-browse

please see these methods
METHOD OpenAll()
METHOD Expand( nLevel )
METHOD Collapse( nLevel )
in linklist.prg
by nageswaragunupudi
Sat Jul 13, 2019 9:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: An easy way to make a tree-browse
Replies: 17
Views: 3522

Re: New FTDN January/Enero 2019 (FWH 19.01)

... it return only images\2.png instead of ..\images\2.png just an Idea I tried this function Function UrlImage(curl) Local aTmp local nLevel := 1 local x local cCad :="" If !empty(cUrl) aTmp := Hb_ATokens( curl, "\" ) For x = Len( aTmp ) - nLevel + 1 To Len( aTmp ...
by Silvio.Falconi
Tue Feb 12, 2019 10:42 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN January/Enero 2019 (FWH 19.01)
Replies: 4
Views: 2708

expandir tree em xbrowse

... pq? oBrw:bKeyDown := {|nKey| BrwKeyAtUs(nkey, oBrw) } .. Static Function BrwKeyAtUs(nKey, oBrw) If !oBrw:oTreeItem:lOpened .and. oBrw:oTreeItem:nLevel == 1 If nKey == VK_RETURN oBrw:oTreeItem:Open() oBrw:Refresh() Endif ElseIf oBrw:oTreeItem:lOpened .and. oBrw:oTreeItem:nLevel == 1 If nKey == ...
by Sistem
Thu Nov 29, 2018 7:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: expandir tree em xbrowse
Replies: 1
Views: 563

Re: tree level

oItem:nLevel
by nageswaragunupudi
Sat Feb 24, 2018 2:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: tree level
Replies: 7
Views: 1018

Re: tree level

Natter wrote:Hi, all !

There is a ttreeview object of arbitrary nesting. How to find out which level is currently open ?



Hi,

You can use

nLevel := oItem:ItemLevel
by Horizon
Sat Feb 24, 2018 8:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: tree level
Replies: 7
Views: 1018

Re: funciones de FWH y Harbour en un archivo .txt

... AdsDDRemoveTable(<cTableName>,<deleteFile>,[<nConnection>])-><lResult> ADSEvalAOF(<cFilter>)->nOptimizationLevel ADSFile2Blob(cFileName,cFieldName,<nBinaryType>)->lSuccess ADSGetAOF()->cFilter ADSGetAOFnoOpt()->cFilterFragment ADSGetAOFoptLevel()->nOptimizationLevel ...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5710

Re: Desktop Alerts

Antonio, pls see the METHOD DesktopAlertSettings . it not save the new ntrasparency value ( data ::nlevel) and on button Preview not refresh the desktopalert window a Question when I edit on DesktopAlertSettings and finish the ::ntimer it close the obj . How I can make to ...
by Silvio.Falconi
Thu Mar 10, 2016 10:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Desktop Alerts
Replies: 39
Views: 29491

Re: To save an image [Solved]

gdipluss.cpp: Warning W8022 c:\bcc7\include\windows\sdk\GdiplusHeaders.h 636: 'Bitmap::Clone(c onst Rect &,int)' hides virtual function 'Image::Clone()' QColorQuantizer.cpp: Error E2209 stdafx.h 32: Unable to open include file 'afxwin.h' Error E2209 stdafx.h 33: Unable to open include file 'afxe...
by mastintin
Sun Nov 08, 2015 9:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To save an image
Replies: 52
Views: 7787

Re: xbrowse MakeTotals()

... in the application program. For example ( FWH12.08 till FWH15.03 )    ADD TO ::oBrw DATA { |x| If( x == nil .or. ::Brw:oTreeItem:nLevel < 2, ::oBrw:oTreeItem:Cargo[ _PAID ], ;                          ::oBrw:oTreeItem:Cargo[ _PAID ] := x ) } ;      ...
by nageswaragunupudi
Sat Mar 28, 2015 3:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse MakeTotals()
Replies: 6
Views: 1680

Problem with two xbrowse tree - possible bug in dblclick ?

... oTree //----------------------------------------------------------------------------// static function SubTree( oParent ) local oTree, n, oItem, nLevel, nItems := 0 local cFolder := oParent:Cargo[ 6 ] local aDir := Directory( cFolder + '\*.*', 'D' ) nLevel := oParent:nLevel + 1 TREE oTree for ...
by Marco Turco
Sun Jun 01, 2014 2:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with two xbrowse tree - possible bug in dblclick ?
Replies: 2
Views: 853

cGetFile replacement

... oTree //----------------------------------------------------------------------------// static function SubTree( oParent ) local oTree, n, oItem, nLevel, nItems := 0 local cFolder := oParent:Cargo[ 6 ] local aDir := Directory( cFolder + '\*.*', 'D' ) nLevel := oParent:nLevel + 1 TREE oTree for ...
by Marco Turco
Thu Feb 27, 2014 3:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: cGetFile replacement
Replies: 2
Views: 773

Re: From treeview Goran to fwh treeview

... I made local cFaTipo local oLink := oTree:GetLinkAt( oTree:GetCursel() ) local cPrompt := oLink:TreeItem:cPrompt local cCargo := oLink:Cargo local nLevel := INT(AT(" 0",cCargo)/2) local oParent := oLink:ParentLink local oLChild local oNewLink local cPCargo := oParent:cargo local cNewCargo ...
by Silvio.Falconi
Mon Sep 09, 2013 3:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: From treeview Goran to fwh treeview
Replies: 9
Views: 1758
Next

Return to advanced search