FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Create a folder system
Posts: 7318
Joined: Thu Oct 18, 2012 07:17 PM
Create a folder system
Posted: Tue Jan 26, 2016 09:52 AM
how I can create a folder system on a window main as this :



there is a owndMain, at left Explorer bar at right a system where the user can show many folders as childwnd and on each folder can show any solution as xbrowse, chart, rpreview or dialog for inser/modif

sometimes a folder can have horizontal splitter and have another xbrowse on bottom

each folder can be close from label ( see the red x on label)

how create it ?

I made a test but it make a adjclient error on resize

Code (fw): Select all Collapse
 
    #include "FiveWin.ch"


    static oWnd,oBar,oExit

    static oMsgItem3,oMsgItem2,cMsgBar

    static  FEATURES_YEAR


    static oDlgFatturas


//----------------------------------------------------------------------------//
    function Main()

       local oWnd

       cMsgBar:= "test"
       FEATURES_YEAR:= "2015"


       DEFINE WINDOW oWnd TITLE "Test" ;
        MENU BuildMenu()               ;
        COLOR CLR_BLACK, GetSysColor( 15 ) - Rgb( 30, 30, 30 )


      SET MESSAGE OF oWnd TO cMsgBar CENTER NOINSET 2015

      DEFINE MSGITEM oMsgItem2;
         OF oWnd:oMsgBar ;
         PROMPT cMsgBar      ;
         SIZE 100              ;
         BITMAPS "MSG_LOTUS", "MSG_LOTUS";
         TOOLTIP " " + i18n("Acerca de...") + " ";
         ACTION MsgInfo( "Test de Full Single Document Interface" )

      DEFINE MSGITEM oMsgItem3 OF oWnd:oMsgBar ;
         SIZE 132 ;
         TOOLTIP i18n( "Visitar la web de alanit en internet" ) ;
         PROMPT "www.alanit.com" ;
         COLOR CLR_HBLUE, GetSysColor(15)    ;
         ACTION NIL

      oWnd:oMsgBar:DateOn()



       BuildBtnBar(oWnd)



       ACTIVATE WINDOW oWnd  ;
       on resize ResizeWndMain(oWnd)

       return nil


//----------------------------------------------------------------------------//

  Function BuildBtnBar(oWnd)

   local oBtnTbl

   DEFINE BUTTONBAR oBar _3D SIZE 44, 46 OF oWnd 2015

      oBar:bRClicked := { || .t. }

   DEFINE BUTTON OF oBar ;
      RESOURCE "BB1"       ;
      TOOLTIP i18n( "Gesti贸n de documentos" ) ;
      MESSAGE i18n( "Gesti贸n de del fichero de documentos." ) ;
      ACTION test(oWnd)   ;
      NOBORDER


   RETURN nil


//----------------------------------------------------------------------------//


   Function  BuildMenu()

   local oMenu
   MENU oMenu FEATURES_YEAR //2015    try with 2015 or nothing...
      MENUITEM "&Archivo"
         MENU
         MENUITEM i18n( "Especificar impresora" ) ;
         RESOURCE "PRINTER" ;     // ON WINDOWS SEVEN IF NOT FOUND RESOURCEs IT  INSERT BLACK LINES
               ACTION PrinterSetup() ;
               MESSAGE i18n( " Establecer la Configuraci贸n de su impresora. " )
            SEPARATOR
            MENUITEM i18n( "Salir" ) ;
               ACTION oWnd:end() ;
               MESSAGE i18n( " Terminar la ejecuci贸n del programa. " )
         ENDMENU
   ENDMENU
RETURN oMenu

//----------------------------------------------------------------------------//


Function Test(oWnd)
  local  oPanel1
  
  Local nSplit := 400
  LOcal aClient := GetClientRect (oWnd:hWnd )

  DEFINE DIALOG oDlgFatturas

   oDlgFatturas:nTop    = oBar:nHeight + 4
   oDlgFatturas:nLeft   = 0
   oDlgFatturas:nBottom = aClient[3] - 1
   oDlgFatturas:nRight  = aClient[4]

   oDlgFatturas:nStyle  := nOR( WS_CHILD, 4 )


   oWnd:oClient := oDlgFatturas



    ACTIVATE DIALOG oDlgFatturas NOWAIT ;
              on init ( Explorerbar (oDlgFatturas,nSplit),;
                        Folder(oDlgFatturas,nSplit))


//----------------------------------------------------------------------------------------//

Function Explorerbar(oDlgFatturas,nSplit)
   oExBar = TExplorerBar():New( 0, 0, nSplit, oDlgFatturas:nBottom, oDlgFatturas )
   oPanel1 := oExBar:AddPanel( "Uno" )
   oPanel1:lSpecial = .T.
   oPanel1:AddLink( "enero" )
 return nil


//----------------------------------------------------------------------------------------//

Function Folder(oDlgFatturas,nSplit)
    Local aPrompts:= { "&Fatturas" }

   oFold :=Tfolder():New( 0, nSplit+5,aPrompts , , oDlgFatturas, , ,;
            , .t., , oDlgFatturas:nWidth, oDlgFatturas:nBottom )

    return nil


//----------------------------------------------------------------------------------------//

    Function ResizeWndMain(oWnd)
   local aClient

      aClient := GetClientRect ( oWnd:hWnd )

      IF  oDlgFatturas != NIL

         oDlgFatturas:SetSize( aClient[4], aClient[3] - oBar:nHeight - oWnd:oMsgBar:nHeight+1 )

       oWnd:oMsgBar:Refresh()
         SysRefresh()
   ENDIF
   return NIL
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 6755
Joined: Wed Feb 15, 2012 08:25 PM
Re: Create a folder system
Posted: Tue Jan 26, 2016 01:25 PM

Something like this example that I put in the forum?

viewtopic.php?f=6t=31798start=0#p186034

&&

Cristobal Navarro

Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noci贸n del tiempo

El secreto de la felicidad no est谩 en hacer lo que te gusta, sino en que te guste lo que haces
Posts: 2064
Joined: Fri Jan 06, 2006 09:28 PM
Re: Create a folder system
Posted: Wed Jan 27, 2016 03:20 AM
Haber si te sirve, este es con MDI...saludos... :-)

Code (fw): Select all Collapse
PROCEDURE ma_clientes()

   LOCAL oWnd, oDlg, oExpBar, aPanel[3], oBrw, oCol, oSplitV, aCampos ,;
      cQry, oQry, oError

   oWnd := oDatos:oWndPPAL

   IF oWndCli == NIL
      DEFINE WINDOW oWndCli ;
         TITLE oDatos:cTitDlg + " - VENTAS - Ficha de Clientes" ;
         BORDER SINGLE MDICHILD OF oWnd

      oExpBar = TExplorerBar():New( 00, 00, 200, oWndCli:nHeight, oWndCli )

      aPanel[1] = oExpBar:AddPanel( "CLIENTES", "Clientes32" )
      aPanel[1]:lSpecial = .t.
      aPanel[1]:AddLink( "Nuevo    ", {|| ficha_clientes( .t., oQry, oBrw ) }, "nuevo16" )
      aPanel[1]:AddLink( "Modificar", {|| ficha_clientes( .f., oQry, oBrw ) }, "modifi16" )
      aPanel[1]:AddLink( "Eliminar ", {|| IF( mbuscar( oQry, oBrw, "cliente_id" ) ,;
         eliminar( oQry, oBrw, "cliente_id" ), ) }, "elimi16" )
      aPanel[1]:AddLink( "Buscar   ", {|| msginfo("Buscar...") }, "buscar16" )
      aPanel[2] = oExpBar:AddPanel( "REPORTES", "print32" )
      aPanel[2]:AddLink( "Report-1", {|| Alert("en construccion") }, "repo1" )
      aPanel[3] = oExpBar:AddPanel( "SALIDA", "salir32" )
      aPanel[3]:AddLink( "Salir", {|| oWndCli:End() }, "salir16" )

      aCampos := {"cliente_id", "cliente_nombre", "cliente_telefono", "cliente_clasifi"}

      oBrw := TXBrowse():New( oWndCli )

      WITH OBJECT oBrw
         :SetDolphin( oQry, .t., .t., aCampos )
         :nMarqueeStyle    := MARQSTYLE_HIGHLROW
         :nColDividerStyle := LINESTYLE_BLACK
         :nStretchCol      := STRETCHCOL_LAST
         :lColDividerComplete := .t.
         :nHeaderHeight := 30
         :nLeft := 203
         :l2007 := .t.
         :lFooter := .f.
         :lRecordSelector := .t.
         :bClrStd := {|| IF( oQry:RecNo() % 2 == 0, {CLR_BLACK, CLR_WHITE}, {0, RGB(203,226,254)} ) }
         :bLDblClick := {|| ficha_clientes( .f., oQry, oBrw ) }
         :bKeyDown := {|nKey| IF( nKey == VK_RETURN, ficha_clientes( .f., oQry, oBrw ), ) }
      END WITH

      oBrw:aCols[1]:cHeader       := "C贸digo"
      oBrw:aCols[1]:bStrData      := {|| IIF( oQry:LastRec() == 0, SPACE(10) ,;
                                          oQry:cliente_id ) }
      oBrw:aCols[1]:nHeadStrAlign := AL_CENTER
      oBrw:aCols[1]:nDataStrAlign := AL_LEFT
      oBrw:aCols[1]:nWidth        := 150

      oBrw:CreateFromCode()

      @ 00,201 SPLITTER oSplitV VERTICAL ;
         PREVIOUS CONTROLS oExpBar ;
         HINDS CONTROLS oBrw ;
         SIZE 1, oWndCli:nHeight PIXEL ;
         OF oWndCli ;
         3DLOOK UPDATE

      oSplitV:lStatic:=.t.

      SET MESSAGE OF oWndCli TO oDatos:cTitDlg + " - Maestro de Clientes"

      oBrw:SetFocus()

      ACTIVATE WINDOW oWndCli MAXIMIZED ;
         ON RESIZE( oExpBar:AdjLeft(), oSplitV:AdjClient(), oSplitV:AdjRight() ) ;
         VALID( oWndCli := NIL, .t. )
   ELSE
      oWndCli:Restore()
      oWndCli:SetFocus()
   ENDIF

RETURN
Dios no est谩 muerto...



Gracias a mi Dios ante todo!
Posts: 7318
Joined: Thu Oct 18, 2012 07:17 PM
Re: Create a folder system
Posted: Fri Jan 29, 2016 07:49 AM

joseluisysturiz,
can you send me a test sample complete please ?

Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 2064
Joined: Fri Jan 06, 2006 09:28 PM
Re: Create a folder system
Posted: Fri Jan 29, 2016 04:12 PM
Silvio.Falconi wrote:joseluisysturiz,
can you send me a test sample complete please ?


Probastes lo que publique.? ese es con la TExplorer y con un Browse, solo le falta agregar el MENU y la MENUBAR, que parte te falta o necesitas.? saludos... :-)
Dios no est谩 muerto...



Gracias a mi Dios ante todo!
Posts: 7318
Joined: Thu Oct 18, 2012 07:17 PM
Re: Create a folder system
Posted: Sat Jan 30, 2016 11:17 AM
I tried to compiling the test adding a window main but I have problem and errors

Code (fw): Select all Collapse
#include "fivewin.ch"

Static oWnd

Function Main()

DEFINE WINDOW oWnd MDI

ACTIVATE WINDOW oWnd ;
ON INIT ma_clientes()

//-----------------------------------------------------------------------------------------//


聽 聽 PROCEDURE ma_clientes()

聽 聽 聽 聽LOCAL oWnd, oDlg, oExpBar, aPanel[3], oBrw, oCol, oSplitV, aCampos ,;
聽 聽 聽 聽 聽 cQry, oQry, oError

聽 聽 聽 聽oWnd := oDatos:oWndPPAL

聽 聽 聽 聽IF oWndCli == NIL
聽 聽 聽 聽 聽 DEFINE WINDOW oWndCli ;
聽 聽 聽 聽 聽 聽 聽TITLE oDatos:cTitDlg + " - VENTAS - Ficha de Clientes" ;
聽 聽 聽 聽 聽 聽 聽BORDER SINGLE MDICHILD OF oWnd

聽 聽 聽 聽 聽 oExpBar = TExplorerBar():New( 00, 00, 200, oWndCli:nHeight, oWndCli )

聽 聽 聽 聽 聽 aPanel[1] = oExpBar:AddPanel( "CLIENTES", "Clientes32" )
聽 聽 聽 聽 聽 aPanel[1]:lSpecial = .t.
聽 聽 聽 聽 聽 aPanel[1]:AddLink( "Nuevo 聽 聽", {|| ficha_clientes( .t., oQry, oBrw ) }, "nuevo16" )
聽 聽 聽 聽 聽 aPanel[1]:AddLink( "Modificar", {|| ficha_clientes( .f., oQry, oBrw ) }, "modifi16" )
聽 聽 聽 聽 聽 aPanel[1]:AddLink( "Eliminar ", {|| IF( mbuscar( oQry, oBrw, "cliente_id" ) ,;
聽 聽 聽 聽 聽 聽 聽eliminar( oQry, oBrw, "cliente_id" ), ) }, "elimi16" )
聽 聽 聽 聽 聽 aPanel[1]:AddLink( "Buscar 聽 ", {|| msginfo("Buscar...") }, "buscar16" )
聽 聽 聽 聽 聽 aPanel[2] = oExpBar:AddPanel( "REPORTES", "print32" )
聽 聽 聽 聽 聽 aPanel[2]:AddLink( "Report-1", {|| Alert("en construccion") }, "repo1" )
聽 聽 聽 聽 聽 aPanel[3] = oExpBar:AddPanel( "SALIDA", "salir32" )
聽 聽 聽 聽 聽 aPanel[3]:AddLink( "Salir", {|| oWndCli:End() }, "salir16" )

聽 聽 聽 聽 聽 aCampos := {"cliente_id", "cliente_nombre", "cliente_telefono", "cliente_clasifi"}

聽 聽 聽 聽 聽 oBrw := TXBrowse():New( oWndCli )

聽 聽 聽 聽 聽 WITH OBJECT oBrw
聽 聽 聽 聽 聽 聽 聽:SetDolphin( oQry, .t., .t., aCampos )
聽 聽 聽 聽 聽 聽 聽:nMarqueeStyle 聽 聽:= MARQSTYLE_HIGHLROW
聽 聽 聽 聽 聽 聽 聽:nColDividerStyle := LINESTYLE_BLACK
聽 聽 聽 聽 聽 聽 聽:nStretchCol 聽 聽 聽:= STRETCHCOL_LAST
聽 聽 聽 聽 聽 聽 聽:lColDividerComplete := .t.
聽 聽 聽 聽 聽 聽 聽:nHeaderHeight := 30
聽 聽 聽 聽 聽 聽 聽:nLeft := 203
聽 聽 聽 聽 聽 聽 聽:l2007 := .t.
聽 聽 聽 聽 聽 聽 聽:lFooter := .f.
聽 聽 聽 聽 聽 聽 聽:lRecordSelector := .t.
聽 聽 聽 聽 聽 聽 聽:bClrStd := {|| IF( oQry:RecNo() % 2 == 0, {CLR_BLACK, CLR_WHITE}, {0, RGB(203,226,254)} ) }
聽 聽 聽 聽 聽 聽 聽:bLDblClick := {|| ficha_clientes( .f., oQry, oBrw ) }
聽 聽 聽 聽 聽 聽 聽:bKeyDown := {|nKey| IF( nKey == VK_RETURN, ficha_clientes( .f., oQry, oBrw ), ) }
聽 聽 聽 聽 聽 END WITH

聽 聽 聽 聽 聽 oBrw:aCols[1]:cHeader 聽 聽 聽 := "C贸digo"
聽 聽 聽 聽 聽 oBrw:aCols[1]:bStrData 聽 聽 聽:= {|| IIF( oQry:LastRec() == 0, SPACE(10) ,;
聽 聽 聽 聽 聽 聽 聽 聽 聽 聽 聽 聽 聽 聽 聽 聽 聽 聽 聽 聽 聽 聽 聽 oQry:cliente_id ) }
聽 聽 聽 聽 聽 oBrw:aCols[1]:nHeadStrAlign := AL_CENTER
聽 聽 聽 聽 聽 oBrw:aCols[1]:nDataStrAlign := AL_LEFT
聽 聽 聽 聽 聽 oBrw:aCols[1]:nWidth 聽 聽 聽 聽:= 150

聽 聽 聽 聽 聽 oBrw:CreateFromCode()

聽 聽 聽 聽 聽 @ 00,201 SPLITTER oSplitV VERTICAL ;
聽 聽 聽 聽 聽 聽 聽PREVIOUS CONTROLS oExpBar ;
聽 聽 聽 聽 聽 聽 聽HINDS CONTROLS oBrw ;
聽 聽 聽 聽 聽 聽 聽SIZE 1, oWndCli:nHeight PIXEL ;
聽 聽 聽 聽 聽 聽 聽OF oWndCli ;
聽 聽 聽 聽 聽 聽 聽3DLOOK UPDATE

聽 聽 聽 聽 聽 oSplitV:lStatic:=.t.

聽 聽 聽 聽 聽 SET MESSAGE OF oWndCli TO oDatos:cTitDlg + " - Maestro de Clientes"

聽 聽 聽 聽 聽 oBrw:SetFocus()

聽 聽 聽 聽 聽 ACTIVATE WINDOW oWndCli MAXIMIZED ;
聽 聽 聽 聽 聽 聽 聽ON RESIZE( oExpBar:AdjLeft(), oSplitV:AdjClient(), oSplitV:AdjRight() ) ;
聽 聽 聽 聽 聽 聽 聽VALID( oWndCli := NIL, .t. )
聽 聽 聽 聽ELSE
聽 聽 聽 聽 聽 oWndCli:Restore()
聽 聽 聽 聽 聽 oWndCli:SetFocus()
聽 聽 聽 聽ENDIF

聽 聽 RETURN
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 7318
Joined: Thu Oct 18, 2012 07:17 PM
Re: Create a folder system
Posted: Sat Jan 30, 2016 11:29 AM
with these correction now the test run
Code (fw): Select all Collapse
#include "fivewin.ch"
#include "Splitter.ch"

Static oWnd

Function Main()

DEFINE WINDOW oWnd MDI

ACTIVATE WINDOW oWnd ;
ON INIT ma_clientes()

//-----------------------------------------------------------------------------------------//


    PROCEDURE ma_clientes()

       LOCAL oWnd, oDlg, oExpBar, aPanel[3], oBrw, oCol, oSplitV, aCampos ,;
          cQry, oQry, oError,oWndCli

      * oWnd := oDatos:oWndPPAL

       IF oWndCli == NIL
          DEFINE WINDOW oWndCli ;
             TITLE  " - VENTAS - Ficha de Clientes" ;
             BORDER SINGLE MDICHILD OF oWnd

          oExpBar = TExplorerBar():New( 00, 00, 200, oWndCli:nHeight, oWndCli )

          aPanel[1] = oExpBar:AddPanel( "CLIENTES", "Clientes32" )
          aPanel[1]:lSpecial = .t.
          aPanel[1]:AddLink( "Nuevo    ", {|| ficha_clientes( .t., oQry, oBrw ) }, "nuevo16" )
          aPanel[1]:AddLink( "Modificar", {|| ficha_clientes( .f., oQry, oBrw ) }, "modifi16" )
          aPanel[1]:AddLink( "Eliminar ", {|| IF( mbuscar( oQry, oBrw, "cliente_id" ) ,;
             eliminar( oQry, oBrw, "cliente_id" ), ) }, "elimi16" )
          aPanel[1]:AddLink( "Buscar   ", {|| msginfo("Buscar...") }, "buscar16" )
          aPanel[2] = oExpBar:AddPanel( "REPORTES", "print32" )
          aPanel[2]:AddLink( "Report-1", {|| Alert("en construccion") }, "repo1" )
          aPanel[3] = oExpBar:AddPanel( "SALIDA", "salir32" )
          aPanel[3]:AddLink( "Salir", {|| oWndCli:End() }, "salir16" )

          aCampos := {"cliente_id", "cliente_nombre", "cliente_telefono", "cliente_clasifi"}

          oBrw := TXBrowse():New( oWndCli )

          WITH OBJECT oBrw
            * :SetDolphin( oQry, .t., .t., aCampos )
             :nMarqueeStyle    := MARQSTYLE_HIGHLROW
             :nColDividerStyle := LINESTYLE_BLACK
             :nStretchCol      := STRETCHCOL_LAST
             :lColDividerComplete := .t.
             :nHeaderHeight := 30
             :nLeft := 203
             :l2007 := .t.
             :lFooter := .f.
             :lRecordSelector := .t.
             :bClrStd := {|| IF( oQry:RecNo() % 2 == 0, {CLR_BLACK, CLR_WHITE}, {0, RGB(203,226,254)} ) }
             :bLDblClick := {|| ficha_clientes( .f., oQry, oBrw ) }
             :bKeyDown := {|nKey| IF( nKey == VK_RETURN, ficha_clientes( .f., oQry, oBrw ), ) }
          END WITH
      /*
          oBrw:aCols[1]:cHeader       := "C贸digo"
          oBrw:aCols[1]:bStrData      := {|| IIF( oQry:LastRec() == 0, SPACE(10) ,;
                                              oQry:cliente_id ) }
          oBrw:aCols[1]:nHeadStrAlign := AL_CENTER
          oBrw:aCols[1]:nDataStrAlign := AL_LEFT
          oBrw:aCols[1]:nWidth        := 150
         */
          oBrw:CreateFromCode()

          @ 00,201 SPLITTER oSplitV VERTICAL ;
             PREVIOUS CONTROLS oExpBar ;
             HINDS CONTROLS oBrw ;
             SIZE 1, oWndCli:nHeight PIXEL ;
             OF oWndCli ;
             3DLOOK UPDATE

          oSplitV:lStatic:=.t.

          SET MESSAGE OF oWndCli TO " - Maestro de Clientes"

          oBrw:SetFocus()

          ACTIVATE WINDOW oWndCli MAXIMIZED ;
             ON RESIZE( oExpBar:AdjLeft(), oSplitV:AdjClient(), oSplitV:AdjRight() ) ;
             VALID( oWndCli := NIL, .t. )
       ELSE
          oWndCli:Restore()
          oWndCli:SetFocus()
       ENDIF

       RETURN


Function ficha_clientes()
   return nil

Function mbuscar()
   return nil
  Function eliminar()
   return ni
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 7318
Joined: Thu Oct 18, 2012 07:17 PM
Re: Create a folder system
Posted: Sat Jan 30, 2016 11:31 AM

but I mean and I'm searching other....structure see the link I sent you on private mail pls

Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 2064
Joined: Fri Jan 06, 2006 09:28 PM
Re: Create a folder system
Posted: Sun Jan 31, 2016 12:26 AM
Silvio.Falconi wrote:but I mean and I'm searching other....structure see the link I sent you on private mail pls


Que necesitas en si...? para enviartelo, aca te copie todo el codigo, lo que no hay es los modulos que llaman los links, saludos... :-)
Dios no est谩 muerto...



Gracias a mi Dios ante todo!
Posts: 7318
Joined: Thu Oct 18, 2012 07:17 PM
Re: Create a folder system
Posted: Mon Feb 01, 2016 11:44 AM
I saw this feature on application
you can download it from http://www.xailer.com/download?en&file=14


when I open a procedure it create an explorer class at left and a folder with one label at right

if I open another procedure it show the explorer changed and add another label on folder

if I close on x on folder it close the label of folder and recall the old label and explorer menu



I sent u a message on joseluisy@hotmail.com
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 2064
Joined: Fri Jan 06, 2006 09:28 PM
Re: Create a folder system
Posted: Mon Feb 01, 2016 06:31 PM
Silvio.Falconi wrote:I saw this feature on application
you can download it from http://www.-.com/download?en&file=14


when I open a procedure it create an explorer class at left and a folder with one label at right

if I open another procedure it show the explorer changed and add another label on folder

if I close on x on folder it close the label of folder and recall the old label and explorer menu



I sent u a message on joseluisy@hotmail.com


Silvio, estoy descargando y revisando la aplicacion que me enviastes, si puedes por favor escribeme en Espa帽ol o Ingles, asi puedo usar traductor...usa el correo joseluisysturiz@yahoo.com, te respondere por alli, estamos contacto, gracias...saludos... :-)
Dios no est谩 muerto...



Gracias a mi Dios ante todo!

Continue the discussion