Search found 43 matches: dstart

Return to advanced search

Re: Hide a Checkbox from Resource.

That was my first guess but this does not seem to work. For dDay := dStart to dEnd nEle++ nId++ lVar := FALSE oChk := nil If dDay >= dFrom .AND. dDay <= dTo Redefine CheckBox oChk Var lVar Id nId of oDlg oChk:SetText( PadL( Day(dDay),2,"0" ...
by byron.hopp
Mon Jul 03, 2023 6:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide a Checkbox from Resource.
Replies: 7
Views: 358

Re: TCalex error

... así:   if nDayWeek  == 7      if Month( dDay_1 ) == Month( dDate )         ::dStart = ::dDate      else         if dow(dDay_1 + 1) == 1  //Si el primer día del mes es domingo, ...
by Sebastián Almirón
Tue Aug 03, 2021 3:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TCalex error (Solucionado)
Replies: 5
Views: 710

replace value on xbrowse ( tdatabase)

... 7] :bEditValue := TotalDays(oBrowse) END I tried with ( but not run ok ) Function TotalDays(oBrowse) local nRecord := oBrowse:narrayat local dStart := oBrowse:aArrayData[nRecord][5] local dEnd := oBrowse:aArrayData[nRecord][6] local nGiorni:= (dEnd-dStart)+1 *oBrowse:aCols[7]:VarPut(nGiorni) ...
by Silvio.Falconi
Tue Apr 20, 2021 8:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: replace value on xbrowse ( tdatabase)
Replies: 4
Views: 456

Report filter dates

... using Tcalex class and citas.dbf the user select the date pick and when the report is activated ACTIVATE REPORT oRep FOR dDesde <= citas->dStart .AND. citas->dend <= dHasta but not execute this command but print only the one date function  Imprime(  dFecha )   local oRep  ...
by Silvio.Falconi
Wed Oct 07, 2020 4:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report filter dates
Replies: 5
Views: 407

Re: strange error for calculating days

... the error not is there ... This morning I saw the dateTo is wrong on a my function to update the dates after a modify I have these lines local dStart:= uCharToVal(dDataIniziale, "D" ) local dEnd:= uCharToVal(dDataFinale, "D" ) If I select the from 10 July to 14 July and ...
by Silvio.Falconi
Sat Apr 25, 2020 9:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: strange error for calculating days !!Resolved!!
Replies: 3
Views: 629

Problem With Daniel's Tplan Class

https://i.postimg.cc/dtxdLmSJ/plan.png this happen when the dstart and dEnd is the same https://i.postimg.cc/dtrbH4P0/dddd.png On my application I must manage also the rent for one day ( daily) and when I open the tplan I see it ...
by Silvio.Falconi
Fri Mar 06, 2020 8:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem With Daniel's Tplan Class
Replies: 0
Views: 446

Re: Tcalex : insert a bitmap

class Tcalex Method Paintcell dNextDay = ::dStart + ( ( nRow - 1 ) * 7 ) + nCol - 1 I add cTypeGarbage:= LoadGarbage( dNextDay ) this return me a text ( it load on my calendar archive and return me the type of garbage) then I add this cTypeGarbage ...
by Silvio.Falconi
Sat Jan 25, 2020 12:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tcalex : insert a bitmap
Replies: 7
Views: 757

Re: DateCalc

I tried not run
give me error because at init dstart is

Image

So, I must converte this string into a date value

How I can make ?
by Silvio.Falconi
Sun May 19, 2019 8:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DateCalc
Replies: 3
Views: 476

Re: calculate days

... $FUNCNAME$ * FT_ELAPSED() * $CATEGORY$ * Date/Time * $ONELINER$ * Return elapsed time between two days and/or times * $SYNTAX$ * FT_ELAPSED([ <dStart> ], [ <dEnd> ], ; * <cTimeStart>, <cTimeEnd>) -> aTimedata * $ARGUMENTS$ * <dStart> is any valid date in any date ...
by MGA
Wed Jan 09, 2019 8:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: calculate days
Replies: 7
Views: 1182

Re: Archives on the local network

... to find a person's age. msgInfo( oCustomer:age() ) Or something more complicated like sales amount over a time period. oCustomer:salesAmount( dStart, dEnd ) There is no end to the great things you can do with objects. James
by James Bott
Thu Oct 04, 2018 1:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Archives on the local network
Replies: 4
Views: 739

Re: Tcalex problems

... OK. Delete and create your databases and index No other users have reported any problems with this theme GetDateFromPos( nAtRow, nAtCol ) INLINE ::dStart + ( Max( nAtRow - 1, 0 ) * 7 ) + nAtCol - 1 This is for double click over name day: ¿ what has to do with the issue of being able to see the ...
by cnavarro
Tue Oct 17, 2017 9:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tcalex problems
Replies: 15
Views: 2349

Re: Tcalex problems

... recall the exe you can see it this is not a doubt but it is a certainty then you sad me to change this GetDateFromPos( nAtRow, nAtCol ) INLINE ::dStart + ( Max( nAtRow - 1, 0 ) * 7 ) + nAtCol - 1 Not run here it not refresh then I cannot see any appointment Where is the syncro with Google Calendar ...
by Silvio.Falconi
Tue Oct 17, 2017 7:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tcalex problems
Replies: 15
Views: 2349

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

TCALEX - Timer para atualizar agenda - SOLUCIONADO

Sr. Cristobal Navarro,

como posso implementar um TIMER para que atualize os dados da agenda?

Sei que devo chamar estes metodos, mais não estou conseguindo chamar do timer :cry:

::AddDates( oView:dStart, oView:dEnd, oView:nStartHour, oView:nEndHour )
oView:BuildDates()
by MGA
Wed Sep 06, 2017 2:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TCALEX - Timer para atualizar agenda - SOLUCIONADO
Replies: 2
Views: 641

Re: Problem with texplorerbar and Calendar class

... 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,; ( cAlias )->IDX, nColorText,; ColorData (( cAlias )->status ...
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: 1300
Next

Return to advanced search