Search found 52 matches: ogroup

Return to advanced search

Re: Ribbon Bar y WHEN

Joao, efectivamente así lo he dejado. Lástima que queda un pequeño fondo blanco, apenas visible.
@08, 060 ADD BUTTON PROMPT "From" SIZE 40, 18 OF oGroup SAYBUTTON TRANSPARENT
Saludos, y gracias.
by FranciscoA
Tue Aug 13, 2024 4:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ribbon Bar y WHEN
Replies: 11
Views: 1979

Re: GROUPBOX

Try removing TRANSPARENT. That is allowing the background to be seen in the control. REDEFINE GROUP [ <oGroup> ]; [ LABEL | PROMPT <cLabel> ]; [ ID <nId> ]; [ OF | WINDOW | DIALOG <oWnd> ]; [ COLOR <cClrFore> [, <nClrBack> ] ]; [ FONT <oFont> ...
by TimStone
Tue Feb 27, 2024 7:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GROUPBOX
Replies: 3
Views: 413

Re: RAO Antonio GROUP error DEFCONTRL with REDEFINE or @

I don't know why we can't use OF oGroup. Maybe TGroup class lacks of something required.
by Enrico Maria Giordano
Wed Jul 26, 2023 8:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO Antonio GROUP error DEFCONTRL with REDEFINE or @
Replies: 11
Views: 1432

Re: RAO Antonio GROUP error DEFCONTRL with REDEFINE or @

Maurizio wrote:Ciao Enrico ,
Did you use the REDEFINE sources? I have the same error


Please replace OF oGroup with OF oDlg.
by Enrico Maria Giordano
Tue Jul 25, 2023 7:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO Antonio GROUP error DEFCONTRL with REDEFINE or @
Replies: 11
Views: 1432

Re: Bug en TGroup ?

Carlos, Has probado haciendo oGroup:Refresh( .F. ) ? Gracias Antonio, No me ha servido pero posiblemente sea por que en el área del TGroup tengo controles que 'cuelgan' de la MDICHILD no del TGroup. Le estoy dando vueltas. Jugaré con WndBoxClr( ...
by FiveWiDi
Sun Feb 28, 2021 5:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Bug en TGroup ?
Replies: 2
Views: 288

Re: Bug en TGroup ?

Carlos,

Has probado haciendo oGroup:Refresh( .F. ) ?
by Antonio Linares
Thu Feb 25, 2021 12:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Bug en TGroup ?
Replies: 2
Views: 288

Re: crop an Image

... A new dialog is created from the cropped result. http://www.pflegeplus.com/IMAGES/cropped3.jpg There seems a adjustment needed ? oGroup := TGroup():New( nRow, nCol, ; // nTop, nLeft nRow + 150, ; // nBottom nCol + 150, ; // nRight "", ; // cLabel oDlg, ; // oWnd NIL, ...
by ukoenig
Fri Oct 13, 2017 11:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: crop an Image
Replies: 28
Views: 5173

Re: crop an Image

... move and resize next save the selected area of a image 1. rightclick define the area jn design-mode 2. rightclick save the image STATIC oDlg, oGroup, nClicked := 0 oDlg:bRClicked := {| nRow, nCol | nClicked++, ; IIF( nClicked = 1, MAKE_GROUP( nRow, nCol ), ; MAKE_IMAGE( cImgFile ) ) } // -------------- ...
by ukoenig
Wed Oct 11, 2017 3:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: crop an Image
Replies: 28
Views: 5173

Re: Ribbon with transparent say

... schemes with this function. I did not know about these global settings. Thank you very much, Rick. @08, 060 SAY "From" SIZE 40, 18 OF oGroup PIXEL TRANSPARENT RIGHT ¡Bárbaro! Gracias, Daniel.
by reinaldocrespo
Mon Feb 16, 2015 6:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon with transparent say
Replies: 3
Views: 659

Re: dragging of a button

... these lines ( group ). From the alert You can get the values. FUNCTION MAKE_AREA(oDlg) // Group-startposition and size : Top, Left, Bottom, Right oGroup := TGroup():New( 100, 100, 300, 300, "", oDlg, NIL, NIL, .T. , .T. , NIL, .T. ) oGroup:SETCOLOR( , 23324454) RETURN( NIL ) Replace ...
by ukoenig
Sun Feb 15, 2015 8:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: dragging of a button
Replies: 7
Views: 2021

FWH1307 - Fivewin.ch - Group Box

... !short: BOX - GROUPS */ #xcommand @ <nTop>, <nLeft> [ GROUP <oGroup> ] TO <nBottom>, <nRight> ; agora esta: #xcommand @ <nTop>, <nLeft> GROUP [ <oGroup> ] [ TO <nBottom>, ...
by MGA
Tue Sep 17, 2013 1:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWH1307 - Fivewin.ch - Group Box
Replies: 2
Views: 715

Re: DATE RANGE

... HEIGHT 160 TOPMARGIN 36 @ 15,2 ADD BUTTON oBtns[5] PROMPT "Da :" SAYBUTTON GROUP oGroup[3] SIZE 50,20 TRANSPARENT @ 50,2 ADD BUTTON oBtns[5] PROMPT "a :" SAYBUTTON GROUP oGroup[3] SIZE 50,20 @ 0.8,10 DTPICKER oDateIn VAR ...
by Silvio.Falconi
Fri Mar 15, 2013 10:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DATE RANGE
Replies: 56
Views: 16469

Re: Encontré un pequeñito error en Fivewin.ch

En mi opinión la sintaxis correcta debiera ser: #xcommand @ <nTop>, <nLeft> GROUP [ <oGroup> ] [ TO <nBottom>, <nRight> ] ... ya que el control sobre el que estamos centrados es el GROUP y tiene que estar como identificador principal del comando. ...
by Antonio Linares
Wed Oct 31, 2012 10:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Encontré un pequeñito error en Fivewin.ch
Replies: 16
Views: 2871

Encontré un pequeñito error en Fivewin.ch

... !short: BOX - GROUPS */ #xcommand @ <nTop>, <nLeft> GROUP [ <oGroup> ] [ TO <nBottom>, <nRight> ] Así debe quedar a si me funciona bien #xcommand @ <nTop>, <nLeft> [GROUP <oGroup> ...
by AIDA
Mon Oct 29, 2012 7:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Encontré un pequeñito error en Fivewin.ch
Replies: 16
Views: 2871

checkbox on ribbonbar

I made @ 5, 7 ADD BUTTON oChk2 GROUP oGroup[1] BITMAP ".\bitmaps\checkon.bmp" MOSTLEFT SIZE 80, 45 PROMPT "Normale" ; ACTION ( lNormale := ! lMultipla, oChk2:SetFile( If( lNormale, ".\bitmaps\checkon.bmp", ".\bitmaps\checkoff.bmp" ...
by Eoeo
Sat Jul 14, 2012 11:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: checkbox on ribbonbar
Replies: 1
Views: 381
Next

Return to advanced search