Search found 150 matches: ofolder

Return to advanced search

Re: Ejemplo de xbrowse

José Luis, Prueba asi: WITH OBJECT ( oBrow := TXBrowse():New( oFolder:aDialogs[1] ) ) //:CreateFromResource( 101 ) ... FOR i := 4 TO 13 STEP 2 IF ! EMPTY( aCatalog[nForm, i] ) && Agrega columnas al xBrowse WITH OBJECT ( oCol := :AddCol() ) :cHeader ...
by jcenteno
Tue Apr 27, 2010 6:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejemplo de xbrowse
Replies: 4
Views: 1090

Date and time

... use for time? Thanks LOCAL oOutlook := TOleAuto():New( "Outlook.Application" ) LOCAL oNameSpace := oOutlook:getnamespace('MAPI') LOCAL oFolder := oNameSpace:GetDefaultFolder( 5 ) LOCAL nItems LOCAL oMail LOCAL iMsg LOCAL cNomeMsg nItems := oFolder:Items:Count oMeter:nTotal := nItems ...
by MarcoBoschi
Fri Apr 16, 2010 2:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Date and time
Replies: 5
Views: 945

Re: Error Disable on Folder

... REDEFINE CHECKBOX oCheck0 VAR lCheck ID 150 COLOR 128, 10853885 OF oDlg70 ; ON CHANGE ( IIF( lCheck, oFolder:aEnable := { .T., .T., .T., .T., .T. },; oFolder:aEnable := { .T., .F . , .T., .T., .T. } ) ) // Page 2 disabled oCheck0:SetFont( oTextFont ...
by ukoenig
Wed Apr 07, 2010 5:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error Disable on Folder
Replies: 2
Views: 417

Re: Terminar escritura en un xbrowse(array)

... registros, por lo que no tengo definido el objeto oCol, ya que construyo el browse de la siguiente manera : REDEFINE XBROWSE oBrw[1] ID 3001 OF oFolder:aDialogs[ 1 ] ARRAY aSintoma AUTOCOLS el resto de los browses son iguales a excepción del array, así que no sé como extraer el oCol. Para darle ...
by Pedro
Fri Mar 19, 2010 10:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Terminar escritura en un xbrowse(array) SOLUCIONADO
Replies: 10
Views: 3014

Re: Folder on gradient filled dialog

... broken like --- Group --- ?? As well I have to find out, why a BRUSH covers the Controls ( on Top ) any Idea ( maybe must be done different ) ? oFolder:aDialogs[3]:bPainted = { | hDC | oFolder:aDialogs[3]:SetBrush( oBrush1 ) } First Screenshot from Resource http://www.pflegeplus.com/pictures/fldtrans7.jpg ...
by ukoenig
Sat Mar 06, 2010 1:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder on gradient filled dialog
Replies: 33
Views: 8464

Re: duda con Folders

mgsoft,

oFolder:SetOption( 2 )

saludos
by wmormar
Sun Feb 28, 2010 11:41 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: duda con Folders
Replies: 2
Views: 349

Re: Folder en Ventana Principal ¡¡¡Ayuda!! (Solucionado)

... :D si se pudo, los TABS ya funcionan, nada más que luego de hacer lo que me dice el Maestro Antonio, se debe mandar a reconstruir las pestañas con oFolder:SetPrompts().     @30,30 FOLDER oFold ;    PROMPT "Datos Gen","Pestaña 2" pixel of ::oWinGen     oFold:aEnable = { ...
by sjingo
Tue Feb 09, 2010 10:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Folder en Ventana Principal ¡¡¡Ayuda!! (Solucionado)
Replies: 7
Views: 1004

Re: Folder Itemsize

Dietmar,

Please try to increase oFolder:nFdHeight with larger values, i.e.:

oFolder:nFdHeight += 15

Do it after the REDEFINE FOLDER ... command. You should notice that the contained dialogs top margins change.
by Antonio Linares
Wed Feb 03, 2010 8:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3543

Re: Folder Itemsize

Dietmar,

oFolder:nFdHeight keeps the height value of the tabs but does not modify it. That value is used to place the top margin of the contained dialogs.

Is the line still erased ? Please post a screenshot, thanks
by Antonio Linares
Wed Feb 03, 2010 1:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3543

Re: Folder Itemsize

   oFolder:nFdHeight += 5

try with different values there, thanks :-)


This one does not change the itemsize but the last 5 pixel at the bottom of the folder are not painted..
D.
by Dietmar Jahnel
Wed Feb 03, 2010 1:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3543

Re: Folder Itemsize

Dietmar, Then it means that DrawPBack() is not erasing that line. Lets modify oFolder:nFdHeight which holds the height of the tabs to position the contained dialogs:    REDEFINE FOLDER oFolder             ;        ID 102                           ;        OF oDlg ...
by Antonio Linares
Wed Feb 03, 2010 12:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folder Itemsize
Replies: 20
Views: 3543

Re: Un tercer color en efecto pijama de Listbox

... aqui el codigo: oBrw[x]:bBkColor := { | nRow, nCol, nStyleLine | ColoresCelda( nRow, nCol, nStyleLine, oFolder ) } oBrw[x]:bTextColor := { | nRow, nCol, nStyleLine | ColoresTexto( nRow, nCol, nStyleLine, oFolder ) } oBrw[x]:bFont := {|nRow,nCol,nStyleLine| ...
by Francisco Horta
Thu Jan 28, 2010 4:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Un tercer color en efecto pijama de Listbox
Replies: 18
Views: 5394

Re: Ocultar Tab de un Folder

... armarlo cada ves que necesites y con los dialogos que deses asi podras eliminar y agregar lo que quieras en el momento ej; REDEFINE FOLDER oFolder ID 900 OF oDlgFor PROMPT "EFECTIVO", "CHEQUES A FECHA" DIALOGS "DLG_GF", "DLG_GF" Pero luego en el ON ...
by VPOZO
Wed Oct 14, 2009 3:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ocultar Tab de un Folder
Replies: 5
Views: 1304

Retrieve items from contact folders in Outlook

... all contact folders? 2) Ho can I ontain an Array containing all field in a contact In this way I am able to nest tree for next FOR iFolder := 1 TO oFolder:count FOR iContact := 1 TO oContact:count FOR iField := 1 TO oField:count ? FolderName, ContactName, ContactPhone, ContactEmail, etc, etc, NEXT ...
by MarcoBoschi
Mon Sep 21, 2009 11:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Retrieve items from contact folders in Outlook
Replies: 5
Views: 1072

Uso de TXbrowse Con TMySql

... de Venezuela Cruz Alfredo Oses FWH 9.04 xHarbour Bcc55 *-- FUNCTION CONTRATOS() *-- LOCAL nLin, nFil, nAncho, nLargo, nPie LOCAL oBar, oFont, oFolder, oBrow, oTabs, oCol LOCAL oWndMain, nRegis := Space(05), cTable LOCAL nCont := 0 *-- IF oWndConj == NIL *-- cTable := "contratos" ...
by compubrion
Fri Sep 04, 2009 4:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Uso de TXbrowse Con TMySql
Replies: 1
Views: 802
PreviousNext

Return to advanced search