Search found 11 matches: owndplan

Return to advanced search

Bueno efectivamente buscando en los PRG fuentes halle lo que quería; es el metodo SetPos( nPos ) [quote] DEFINE DIALOG oWndPlan OF oVent TITLE "Calendario " FROM 5, 5 TO 21.6, 96.705 @ 117.3,0 SCROLLBAR oScroll HORIZONTAL OF oWndPlan ON UP PreviousYear() ON DOWN NextYear() PIXEL SIZE ...
by fespinoza
Thu Jul 31, 2008 1:05 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Algo sobre el scroolbar
Replies: 2
Views: 734

Algo sobre el scroolbar

Tengo el siguiente código donde ubico un scrollbar horizontal: DEFINE DIALOG oWndPlan OF oVent TITLE "Calendario " FROM 5, 5 TO 21.6, 96.705 @ 117.3,0 SCROLLBAR HORIZONTAL OF oWndPlan ON UP PreviousYear() ON DOWN NextYear() PIXEL SIZE 363,9 ; PAGESTEP 10 RANGE ...
by fespinoza
Wed Jul 30, 2008 4:25 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Algo sobre el scroolbar
Replies: 2
Views: 734

Otto,

>
What is local aInfo := oWndPlan:DispBegin()
exactly doing?
>

"Double buffer" painting, to avoid "flickering" on re-painting.
by Antonio Linares
Sat Jul 26, 2008 5:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Pickdate
Replies: 94
Views: 17298

... had a mistake in naming the variables. X was y and vice versa. I changed the code. Please lets go ahead with this. Carles: What is local aInfo := oWndPlan:DispBegin() exactly doing? Regards, Otto PS: Could you please send me your email addresses. I would like to share my snipkeeper code with you, ...
by Otto
Fri Jul 25, 2008 10:47 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Calendario anual
Replies: 49
Views: 12773

... had a mistake in naming the variables. X was y and vice versa. I changed the code. Please lets go ahead with this. Carles: What is local aInfo := oWndPlan:DispBegin() exactly doing? Regards, Otto PS: Could you please send me your email addresses. I would like to share my snipkeeper code with you, ...
by Otto
Fri Jul 25, 2008 8:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Pickdate
Replies: 94
Views: 17298

Pickdate

... way that the selected days shine through. I use Fillrect for painting the chart. hBru := CreateSolidBrush( RGB(217,230,246) ) FillRect( oWndPlan:hDc, { 30-18+ (18*(ITemp)) ,buchstart, 30 +(18*(ITemp)), sXTemp}, hBru ) Thanks in advance Otto http://www.atzwanger.com/fw/pickdate.jpg
by Otto
Thu Jul 24, 2008 5:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Pickdate
Replies: 94
Views: 17298

... //sdOffsetDate = Startdatum für grafischen Z immerplan cChartCaption := "<" + cChartCaption else cChartCaption := cChartCaption endif while oWndPlan:GetWidth(text,::planFont) < nDurationPX n = n + 1 text := padr( (cChartCaption) ,n) end Thank you for your help. Regards, Otto
by Otto
Fri May 30, 2008 8:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FIVEWIN power - a room planer video
Replies: 50
Views: 11076

... Keep in mind that the planer is open 24 hours a day. I use oWnd:Say(). As say does not let you pass the length I do something like this while oWndPlan:GetWidth(text,::planFont) < nDurationPX n = n + 1 text := padr( (cChartCaption) ,n) end n = n - 1 IF n=0 text := "<" ENDIF oWndPlan:say( ...
by Otto
Fri May 30, 2008 7:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FIVEWIN power - a room planer video
Replies: 50
Views: 11076

Jeff, if you define the Window with DEFINE WINDOW oWndPlan TITLE "Kalender" ; HSCROLL ; FROM 5, 5 TO 24, 98 you have the scrollbar. Then you can use these methods: oWindPlan:oHScroll():SetRange(1,oWindPlan:nHorzRes()) oWindPlan:oHScroll():SetPos(oWindPlan:nHorzRes()/2) ...
by Otto
Wed Mar 19, 2008 5:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need some ideas
Replies: 9
Views: 1531

oWnd:say - transparent

... with false but the argument is not respected. After the first use of transparent the rest is transparent although the argument is set to false. oWndPlan:Say( 150, 50, "TEST1", 8421504 ,"B",oLbxFont,.t.,.f.)<------ oWndPlan:Say( 200, 50, "TEST2", 8421504 ,"B",oLbxFont,.t.,.t.)<------ oWndPlan:Say( ...
by Otto
Mon Nov 05, 2007 12:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oWnd:say - transparent
Replies: 6
Views: 1024

... the on paint but sometimes I would like to stop this behavior. For example the tooltip executes a on paint. Best regards, Otto ACTIVATE WINDOW oWndPlan MAXIMIZED; ON PAINT (ziplan:=.F., MiPaint(ZZ,hdatum,A,Monat,hOben,nAnzeige) ); http://www.atzwanger.com/fw/clip1.jpg
by Otto
Thu Oct 11, 2007 5:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ON PAINT oWnd
Replies: 11
Views: 1741

Return to advanced search