Search found 35 matches: xbrwdisk

Return to advanced search

cFWGetDir: Nueva funcion a mejorar

Amigos del foro: En base al ejemplo xBrwDisk.prg construí una funcion similar a cGetDir() Ejemplo con cGetDir() http://www.sauro-sys.com/Source/cGetDir.JPG Ejemplo con cFWGetDir() http://www.sauro-sys.com/Source/cFWGetDir.JPG ...
by RSalazarU
Sat Aug 17, 2013 3:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: cFWGetDir: Nueva funcion a mejorar
Replies: 20
Views: 4718

Re: Crear Tree en Xbrowse

... * nPB )     ENDCASE  ENDIFRETURN ALLTRIM(TRANSFORM(nValue,"999,999,999,999.99")) + cTmp en la caprte samples tambien hay ejemplos, checa xbrwdisk.prg, treeview.prg, treelst.prg.tambien puedes armar la estructura del disco con lasclases Treeview y ListView, pero no me convencieron para ...
by cuatecatl82
Wed Aug 07, 2013 3:55 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Crear Tree en Xbrowse
Replies: 1
Views: 714

HScroll de XBrowse en 1 Columna

... :wink: :wink: Necesito de su valiosa asesoria, tengo un detallito que no puedo solucionar con XBrowse y SetTree(), tomando como ejemplo el archivo xbrwdisk.prg para tener un árbol de directorios, lo pase a mi proyecto, el scroll vertical sube y baja con forme abro la estructura del disco, funciona ...
by cuatecatl82
Tue Aug 06, 2013 8:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: HScroll de XBrowse en 1 Columna
Replies: 6
Views: 1322

Re: xBrowse Table records with a subtree

Reinaldo,
See if \FWH\SAMPLES\XBRWDISK.PRG can help.
Regards, Euclides
by Euclides
Sat Dec 15, 2012 4:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Table records with a subtree
Replies: 9
Views: 2197

New FTDN February/Febrero 2010 (10.2)

... Usage: IfNil( p1, ... pN ) or IfNil( { a1. ..., aN } ) --> first non-nil value. * Enhancement: Improved sample xbrwdisk.prg. * Enhancement: functions CallDll() and CallDll32() have been renamed as FWCallDll() and FWCallDll32() to avoid symbols clash with Harbour. ...
by Antonio Linares
Thu Feb 25, 2010 10:00 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February/Febrero 2010 (10.2)
Replies: 4
Views: 3842

Re: problem with xbrwdisk.prg

Dear Mr. NagesWaraRao,
Thank you very much for your help. Now I have all the functionality I need.
Best regards,
Otto
by Otto
Wed Feb 17, 2010 5:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with xbrwdisk.prg
Replies: 8
Views: 1327

Re: problem with xbrwdisk.prg

Dear Mr. NagesWaraRao, I would like to use this code to select a certain letter. I change local aDrives := aDrives( 2 ) // Hard disks to local aDrives := { "c:\xwinhotel"} This way I see the folder where the letters are. Now I would like to start with the treeview in open status and then ...
by nageswaragunupudi
Wed Feb 17, 2010 3:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with xbrwdisk.prg
Replies: 8
Views: 1327

Re: problem with xbrwdisk.prg

Dear Mr. NagesWaraRao, thank you so much. Now all is working as suspected. May I ask you two more questions? I would like to use this code to select a certain letter. I change local aDrives := aDrives( 2 ) // Hard disks to local aDrives := { "c:\xwinhotel"} This way I see the folder where ...
by Otto
Wed Feb 17, 2010 1:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with xbrwdisk.prg
Replies: 8
Views: 1327

Re: problem with xbrwdisk.prg

Dear Mr. NageswaraRao, Your changes solved the problem. Now if a folder is empty you don’t get an error anymore. Thank you very much. Could you please have a look why ENTER key only works on folders you have once opened first with the mouse, too. Thanks in advance Otto Please add this after oBrw:Se...
by nageswaragunupudi
Wed Feb 17, 2010 12:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with xbrwdisk.prg
Replies: 8
Views: 1327

Re: problem with xbrwdisk.prg

Dear Mr. NageswaraRao, do you think it should be possible if directory is empty to insert a pseudo item to get more a windows explorer like feeling. Best regards, Otto Please use this modified function. static function SubTree( oParent )   local oTree, n, oItem, nLevel, nItems := 0   local ...
by nageswaragunupudi
Wed Feb 17, 2010 12:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with xbrwdisk.prg
Replies: 8
Views: 1327

Re: problem with xbrwdisk.prg

Dear Mr. NageswaraRao,
do you think it should be possible if directory is empty to insert a pseudo item to get more a windows explorer like feeling.
Best regards,
Otto
by Otto
Wed Feb 17, 2010 7:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with xbrwdisk.prg
Replies: 8
Views: 1327

Re: problem with xbrwdisk.prg

Dear Mr. NageswaraRao,
Your changes solved the problem. Now if a folder is empty you don’t get an error anymore.
Thank you very much.
Could you please have a look why ENTER key only works on folders you have once opened first with the mouse, too.

Thanks in advance
Otto
by Otto
Wed Feb 17, 2010 7:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with xbrwdisk.prg
Replies: 8
Views: 1327

Re: problem with xbrwdisk.prg

Please change the static function SetSubTree to check for empty subtree; Modified code static function SetSubTree( oItem, oTree )   if oTree:nCount() > 0   // now inserted      oTree:oFirst:oPrev   := oItem      oTree:oLast:SetNext...
by nageswaragunupudi
Wed Feb 17, 2010 3:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with xbrwdisk.prg
Replies: 8
Views: 1327

problem with xbrwdisk.prg

I did some tests with xbrwdisk.prg. I noticed: 1) ENTER and ESC only work if you first have clicked on that folder. 2) I get an error if I click on an empty folder . Best regards, Otto Application =========== Path and name: C:\FWH\samples\xbrwdisk.exe ...
by Otto
Wed Feb 17, 2010 12:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with xbrwdisk.prg
Replies: 8
Views: 1327

Re: xbrowse (empezando)

... xbrabln.prg xbradt.prg xbrarag.prg xbrbckg1.prg xbrbtn.prg xbrchild.prg xbrgrad.prg xbrimag1.prg xbrmemo.prg xbrprogb.prg xbrstru.prg xbrwalia.prg xbrwdisk.prg xbrwedit.prg xbrwrows.prg xbrwtree.prg xbwser.prg
by Daniel Garcia-Gil
Thu Sep 17, 2009 5:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse (empezando)
Replies: 2
Views: 709
PreviousNext

Return to advanced search