Search found 946 matches

by Richard Chidiak
Thu Jun 06, 2013 12:08 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse to Excel how to bring ON TOP ?
Replies: 8
Views: 2760

Re: xBrowse to Excel is only shown iconized ?

Uwe

Try

oExcel:Visible := .T.

without all the rest , it should be enough

Richard
by Richard Chidiak
Thu Jun 06, 2013 10:37 am
Forum: To do - WishList / Por hacer - Peticiones
Topic: RIBBON WITH 2013 STYLE
Replies: 17
Views: 8923

Re: RIBBON WITH 2013 STYLE

Antonio

is RIBBON WITH 2013 STYLE included in fwh 13.05 ?

i have not seen it in what's new

Richard
by Richard Chidiak
Tue Jun 04, 2013 6:49 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour Ole syntax
Replies: 34
Views: 6038

Re: Harbour Ole syntax

Antonio Thank you for your time, i will keep searching on parameters order with harbour, looks like the problem is the order we send informations. I will check. Btw you spoke about a utility to analyze activex that you posted here in this forum , are you refering to dbwin32 ? or am i missing somethi...
by Richard Chidiak
Tue Jun 04, 2013 3:39 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour Ole syntax
Replies: 34
Views: 6038

Re: Harbour Ole syntax

does it show the week ? at that date ? probably somewhere around 15th july ?
by Richard Chidiak
Tue Jun 04, 2013 3:14 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour Ole syntax
Replies: 34
Views: 6038

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 2:46 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour Ole syntax
Replies: 34
Views: 6038

Re: Harbour Ole syntax

Antonio Ok i go,t it working for dayview and monthview for Harbour the :DayView:Showday(::TPAR[04]) has to be the very last directive , it works in this case for dayview and monthview but not for weekview, still searching but i can handle this with Xharbour it is straight, no matter where the direct...
by Richard Chidiak
Tue Jun 04, 2013 2:32 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour Ole syntax
Replies: 34
Views: 6038

Re: Harbour Ole syntax

Antonio :DayView:Showday(DATE() + 5) or whatever parameter only the current day is shown in all views i do not think it is related to set date i manipulate a lot of datas with dates in codejock , all events are retreived with dates, appointments, schedules etc.... no problem on these very strange
by Richard Chidiak
Tue Jun 04, 2013 2:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour Ole syntax
Replies: 34
Views: 6038

Re: Harbour Ole syntax

Anonio

Date() is the default codejock starts at "today"

try another date

Richard
by Richard Chidiak
Tue Jun 04, 2013 12:20 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour Ole syntax
Replies: 34
Views: 6038

Re: Harbour Ole syntax

That means :DayView:ShowDay( dDate ), is working correctly in xHarbour but not in Harbour. yes working correct with xharbour but not harbour - Is passing date parameters in other methods of codejock are giving similar problems or only the ShowDay() method? All other passing parameters have been fix...
by Richard Chidiak
Tue Jun 04, 2013 6:58 am
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour Ole syntax
Replies: 34
Views: 6038

Re: Harbour Ole syntax

Antonio yes i think we can assign it DEFINE WINDOW oWndChild MDICHILD OF oWnd        oCalex = THActiveX():New( oWndChild, "Codejock.CalendarControl.15.0.2" ) ocalex:ViewType = 0  // day view ocalex:DayView:Showday(xxxxx)    <----          oWndChild:oClient = oCalex        ACTIVATE WINDOW o...
by Richard Chidiak
Tue Jun 04, 2013 5:47 am
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour Ole syntax
Replies: 34
Views: 6038

Re: Harbour Ole syntax

yes working perfect with xharbour

:DayView:Showday(::TPAR[04]) tpar[04] is a date format
by Richard Chidiak
Tue Jun 04, 2013 5:34 am
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour Ole syntax
Replies: 34
Views: 6038

Re: Harbour Ole syntax

James

I have tried to set it as a date/time but no result

TTOS((STOT(DTOS(::TPAR[04]) + ::TPAR[03])) does not work

Richard
by Richard Chidiak
Tue Jun 04, 2013 5:32 am
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour Ole syntax
Replies: 34
Views: 6038

Re: Harbour Ole syntax

unfortunately no

it definitely is expectig a "date format" , here we send a character string

Error description: (DOS Error -2147352571) WINOLE/1007 Argument error: SHOWDAY
Args:
[ 1] = C #2013-10-10#
by Richard Chidiak
Mon Jun 03, 2013 8:38 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour Ole syntax
Replies: 34
Views: 6038

Re: Harbour Ole syntax

Antonio

oDayView:Showday( ::TPAR[ 04 ], .F. )

oDayView:Showday( ::TPAR[ 04 ], .t. )

Both have no effect as if they were completely ignored

Richard
by Richard Chidiak
Mon Jun 03, 2013 6:31 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour Ole syntax
Replies: 34
Views: 6038

Re: Harbour Ole syntax

2 arguments first one date and the second boolean (default to set) Public Sub ShowDay( _ ByVal Day As Date, _ Optional ByVal Select As Boolean = True _ ) Parameters Day [in] Date\DteTime object specifying the date to show in the current view. Select [in] True to select\highlight the date after showi...