FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour How I can create it ?
Posts: 3107
Joined: Fri Oct 07, 2005 06:28 PM
How I can create it ?
Posted: Sat Mar 11, 2006 11:59 PM
Have You an Idea to create it on xharbour & fw



Regards
Best Regards, Saludos



Falconi Silvio
Posts: 218
Joined: Fri Oct 07, 2005 01:55 AM
How I can create it ?
Posted: Sun Mar 12, 2006 02:22 AM

Hello Silvio,

Very nice. I hope xHarbour/FWH is able to offer it. :oops:
or you can fix it for your TPlan class.
I waiting for you. :)

Regards,

Richard

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
How I can create it ?
Posted: Sun Mar 12, 2006 07:48 AM

Silvio,

You can create a user defined control that looks like that.

As far as I remember, Otto (WinHotel) datron@aon.at has developed a similar control.

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 3107
Joined: Fri Oct 07, 2005 06:28 PM
How I can create it ?
Posted: Sun Mar 12, 2006 03:09 PM

Richard & Antonio,
I have a similar Tgant 32 bit ( it called Tplan) but it is also in beta test
I have problem with a method : it must refill the rectangule of color of the brush I select but it not run ok

Dear Antonio If you can help me to finish this class , I give you many thanks

Regards

Best Regards, Saludos



Falconi Silvio
Posts: 4840
Joined: Fri Nov 18, 2005 04:52 PM
How I can create it ?
Posted: Sun Mar 12, 2006 07:08 PM

I am very interested in such a control too.

James

FWH 18.05/xHarbour 1.2.3/BCC7/Windows 10
Posts: 3107
Joined: Fri Oct 07, 2005 06:28 PM
How I can create it ?
Posted: Sun Mar 12, 2006 11:14 PM
Dear James,
I have a class
it is similar to gant class but it now not run ok because there is a wrong method
the name of this method is FillRect
this func must create a rectangule and must refill this rectangule of the color I selected
example :
.....
Define Brush oPenR COLOR CLR_HBLUE

.......
oGraficos:FILLRECT( nLinea+nVertic+4, nColumnaInicio+nHoriz2, nLinea+nVertic+14, nColumnaFinal+nHoriz2, oPenR ,recno())


oGraficos is the Object of Tplan class



the method Fillrect MUst create a rectangule and refill this rectangule :


METHOD Fillrect( nTop, nLeft, nBottom, nRight, oPen ,nRecord) CLASS TPlan

   local hPen := if( oPen = nil, 0, oPen:hPen )
   Local nX := oPen:nWidth / 2
   IIF( nRecord == nil , nRecord := 0  , )
   ::GetDC()
   Rectangle( ::hDC, nTop, nLeft, nBottom, nRight, hPen )
  * MoveTo( ::hDC, nLeft, nTop )
  * LineTo( ::hDC, nRight, nBottom, hPen )

 FillRect( ::hDC, { nTop + 2, nLeft + 2, nBottom, nRight }, hpen)

   ::ReleaseDC()
   if nRecord > 0
      aadd(::aItems,{nTop-nX,nLeft-nX,nBottom+nX,nRight+nX,nRecord})
   endif




all run ok but it not refill the rectangule

How I can make it ?


thanks
Best Regards, Saludos



Falconi Silvio
Posts: 4840
Joined: Fri Nov 18, 2005 04:52 PM
How I can create it ?
Posted: Sun Mar 12, 2006 11:54 PM

Silvo,

It looks like you are passing hPen, instead of hBrush. I think you need to define a brush. From the docs:

FillRect( <hDC>, <aRect>, <hBrush> )

James

FWH 18.05/xHarbour 1.2.3/BCC7/Windows 10
Posts: 3107
Joined: Fri Oct 07, 2005 06:28 PM
How I can create it ?
Posted: Mon Mar 13, 2006 12:02 PM

TO ALL, ANTONIO AND RICHARD

I THINK I CAN PUBBLISH REL.100 OF TPLAN CLASS 32 BIT

I HAVE MADE ONLY A SIMPLY TEST PROGRAM BUT IT NOW RUN OK

BUT YOU CAN CREATE WITH ME ANOTHERS TEST PROGRAM
IT IS EASY TO CREATE A PROGRAM

TOMORROW I LOAD THE CLASS AT hYPERLOAD AND INSERT THE MESSAGE HERE .

REGARDS

FALCONI SILVIO

Best Regards, Saludos



Falconi Silvio
Posts: 218
Joined: Fri Oct 07, 2005 01:55 AM
How I can create it ?
Posted: Mon Mar 13, 2006 04:02 PM

Hello Silvio,

Sounds good news.

I'm hurry to try your new TPlan 32bit.

Regards,

Richard

Posts: 140
Joined: Sat Oct 08, 2005 05:16 PM
How I can create it ?
Posted: Mon Mar 13, 2006 05:48 PM

Hei Silvio:

Really good news for Fivewiners.

Thanks

Regards

Ruben Fernandez

Rubén D. Fernández

Maldonado-Uruguay

Continue the discussion