Search found 41 matches: ocalex

Return to advanced search

Bad Selex visualization

... 217-25, 255 ), nRGB( 231, 242, 255 ) } }; LINECOLORS nRGB( 237, 242, 248 ), nRGB( 141, 178, 227 ); COLORTEXT CLR_BLACK, CLR_GREEN ; ACTION (::oCalex:oView:SetInterval( Val( ::oSelex:aOptions[ nOption ] ) ), ::oCalex:refresh() ) the numbers are ok the bar for the selection ( gray box) the control ...
by Silvio.Falconi
Thu May 28, 2020 4:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bad Selex visualization
Replies: 0
Views: 277

Re: TCALEX - Sr. Cristobal Navarro

Esa es la clausula que has de utilizar

DEFINE CALEX ::oCalex OF ::oPanelCalex ;
FROM 1, 10 TO 600, 600 ;
FIRST_DATE 1 ALL //TOP //LEFT //BOTTOM //RIGHT
by cnavarro
Tue Oct 24, 2017 8:38 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TCALEX - Sr. Cristobal Navarro
Replies: 18
Views: 3328

Re: Tcalex problems

I initiated this method to print the week someone can help me to build it ? IF oApp():oCalex:IsKindOf( "TWeekView" ) oApp():oCalex:oView:printWeek() Endif METHOD PrintWeek() METHOD PrintHourHorzLines(oPrn,nTop) not run also and I not Know How inserted the ...
by Silvio.Falconi
Wed Oct 18, 2017 6:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tcalex problems
Replies: 15
Views: 2359

Re: Tcalex problems

Please look TCalex.ch #xcommand DEFINE CALEX <oCalex>;          [ <of: OF, WINDOW, DIALOG, PANEL> <oWnd> ];          [ FROM <nTop>, <nLeft> TO <nBottom>, ...
by cnavarro
Mon Oct 16, 2017 6:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tcalex problems
Replies: 15
Views: 2359

Re: TCALEX - Timer para atualizar agenda - SOLUCIONADO

Criei o seguinte METODO e chamei de um TIMER. :D

//---------------------------------------------------//
METHOD AtualizaAgenda() CLASS SampleCalex

::AddDates( ::oCalex:oView:dStart, ::oCalex:oView:dEnd, ::oCalex:oView:nStartHour, ::oCalex:oView:nEndHour )
::oCalex:oView:BuildDates()

return Nil
by MGA
Wed Sep 06, 2017 4:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TCALEX - Timer para atualizar agenda - SOLUCIONADO
Replies: 2
Views: 641

Re: Tcalex printing

do you add the methods I create ? then make on the buildpopup menu MENUITEM "Print week... " ACTION oApp():oCalex:oWeekView:PrintWeek() you 'll see the ptint of the week it print the Hour but it not print the name of the days ( with numbers) then It must print the appoinments ...
by Silvio.Falconi
Thu Apr 13, 2017 1:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tcalex printing
Replies: 3
Views: 671

Re: Problem with texplorerbar and Calendar class

... VAL(nType) = 5 aGrad = { { 1, RGB(0xc0,0xc0,0xc0), RGB(0xc0,0xc0,0xc0) } } ENDCASE return aGrad and then I call it from loaddates function oApp():oCalex:LoadDates( ( cAlias )->START,; ( cAlias )->END, ; ( cAlias )->DSTART, ; ( cAlias )->DSTART, ; ( cAlias )->TEXT, ; ( cAlias )->SUBJECT,; ...
by Silvio.Falconi
Fri Apr 07, 2017 2:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with texplorerbar and Calendar class
Replies: 9
Views: 1305

Re: Cómo compilar la TCalex? (SOLUCIONADO, gracias a CRISTOBAL)

Creo recordar que era con esta claúsula

DEFINE CALEX ::oCalex OF ::oPanelCalex;
FIRST_DATE 2
by cnavarro
Tue Aug 23, 2016 10:55 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cómo compilar la TCalex? (SOLUCIONADO, gracias a CRISTOBAL)
Replies: 35
Views: 6402

Re: Help to create a method

... METHOD BuildPop( nRow, nCol, oView, dDateFrom, dDateTo, nTimeFrom, nTimeTo ) CLASS SampleCalex local oMenu local oSelf := Self local lNew := oView:oCalex:oCalInfoSelected == NIL MENU oMenu POPUP MENUITEM If( lNew, "New appointment",; "Modify appointment" ) ACTION oSelf:BuildDialog( ...
by Silvio.Falconi
Sat Jun 14, 2014 11:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help to create a method
Replies: 6
Views: 1234

Re: How to receive events from objects?

... the bonevent block traps all the events Now for Harbour , Antonio has extended the activex class, i am using thactivex (this is a sample below) ::oCalex := thActiveX():New( ::oPanelCalex, "Codejock.CalendarControl.15.0.2" ) with object ::oCalex :bOnEvent = { | event, aParms, pParams ...
by Richard Chidiak
Fri Jun 13, 2014 7:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to receive events from objects?
Replies: 32
Views: 8944

Re: Harbour Ole syntax

Antonio

oCalex:DayView:Showday( Date() + 50 ) // +5 you are in the same week
oCalex:ViewType = 2

Richard
by Richard Chidiak
Tue Jun 04, 2013 3:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour Ole syntax
Replies: 34
Views: 6560

Re: Harbour Ole syntax

This is also working, though sunday does not show selected:

oCalex:DayView:Showday( Date() + 5 )
oCalex:ViewType = 2

Image
by Antonio Linares
Tue Jun 04, 2013 3:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour Ole syntax
Replies: 34
Views: 6560

Re: Harbour Ole syntax

Richard,

If I use:

oCalex:ViewType = 0 // day view
oCalex:DayView:Showday( Date() + 5 )

then I see this:

Image

whats wrong there ?
by Antonio Linares
Tue Jun 04, 2013 2:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour Ole syntax
Replies: 34
Views: 6560

Re: Harbour Ole syntax

Richard,

This is working fine also :-)

oCalex:DayView:Showday( Date() + 1 )
by Antonio Linares
Tue Jun 04, 2013 2:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour Ole syntax
Replies: 34
Views: 6560

Re: TPanel & Codejock

::oCalex was not in my end

::oPanelDTP does not exist in my class.

Thanks. These people use the appointment scheduler very aggressively.

Tim
by TimStone
Thu May 30, 2013 7:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TPanel & Codejock
Replies: 10
Views: 2049
Next

Return to advanced search