FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Line Disappear
Posts: 175
Joined: Tue Nov 10, 2009 10:56 AM
Line Disappear
Posted: Fri Feb 22, 2013 08:37 AM
Hi

After I upgraded form FWH1201 to FWH1301

Code (fw): Select all Collapse
function main

LOCAL oDlg

DEFINE DIALOG oDlg FROM 6, 7 TO 21, 72 ;
      TITLE "Test01" ;
          GRADIENT { { 1, nRGB( 199, 216, 237 ), nRGB( 237, 242, 248 ) } }


@ 0.3, 0.3 to 3.8, 22.414 // This box disappears

@ 1, 1 SAY "This is a test"
@ 2, 1 SAY "This is a another test"

ACTIVATE DIALOG oDlg;
CENTER

RETURN NIL


Please help
Ragards
ACWoo
Using FWH1301+bcc582+harbour1301
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Line Disappear
Posted: Fri Feb 22, 2013 10:44 AM

Acwoo,

Please change this line this way:

@ 0.3, 0.3 GROUP TO 3.8, 22.414

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 175
Joined: Tue Nov 10, 2009 10:56 AM
Re: Line Disappear
Posted: Fri Feb 22, 2013 11:22 AM
Thanks

Code (fw): Select all Collapse
@ 0.3, 0.3 GROUP TO 3.8, 22.414


Box now appears.

Is there any other way to do this without changing all the codes ?
The box was there in FHW1201.

Regards
ACWoo
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Line Disappear
Posted: Fri Feb 22, 2013 12:17 PM
AcWoo,

In FiveWin.ch please modifiy these lines this way:
Code (fw): Select all Collapse
!short: BOX - GROUPS */

#xcommand @ <nTop>, <nLeft>[color=#FF0000] [[/color] GROUP <oGroup> [color=#FF0000]][/color] ;
             [ TO <nBottom>, <nRight> ] ;
             [ <label:LABEL,PROMPT> <cLabel> ] ;
             [ OF <oWnd> ] ;
             [ COLOR <nClrFore> [,<nClrBack>] ] ;
             [ <lPixel: PIXEL> ] ;
             [ <lDesign: DESIGN> ] ;
             [ FONT <oFont> ] ;
             [ <lTransparent: TRANSPARENT> ] ;
             [ SIZE <nWidth>, <nHeight> ] ;
       => ;
          [ <oGroup> := ] TGroup():New( <nTop>, <nLeft>, <nBottom>, <nRight>,;
             <cLabel>, <oWnd>, <nClrFore>, <nClrBack>, <.lPixel.>,;
             [<.lDesign.>], [<oFont>], [<.lTransparent.>], <nWidth>, <nHeight> )
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 175
Joined: Tue Nov 10, 2009 10:56 AM
Re: Line Disappear
Posted: Fri Feb 22, 2013 01:52 PM

Thanks Antonio

It works.

Regards
ACWoo

Continue the discussion