Search found 25 matches: nday

Return to advanced search

Re: ¿Cómo saber la fecha de los cambios a una carpeta?

Estimado José, Aquí lo tienes. Lo incluimos para el próximo build de FWH: function FW_FolderChanged( cFolderPath ) --> { nDay, nMonth, nYear, nHours, nMinutes, nSeconds } #include "FiveWin.ch"function Main()    XBrowse( FW_FolderChanged( "c:\fwh" ...
by JoseAlvarez
Mon Mar 04, 2024 2:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿Cómo saber la fecha de los cambios a una carpeta?
Replies: 6
Views: 190

Re: ¿Cómo saber la fecha de los cambios a una carpeta?

Estimado José, Aquí lo tienes. Lo incluimos para el próximo build de FWH: function FW_FolderChanged( cFolderPath ) --> { nDay, nMonth, nYear, nHours, nMinutes, nSeconds } #include "FiveWin.ch"function Main()    XBrowse( FW_FolderChanged( "c:\fwh" ...
by JoseAlvarez
Sun Mar 03, 2024 9:09 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿Cómo saber la fecha de los cambios a una carpeta?
Replies: 6
Views: 190

Re: ¿Cómo saber la fecha de los cambios a una carpeta?

Estimado José, Aquí lo tienes. Lo incluimos para el próximo build de FWH: function FW_FolderChanged( cFolderPath ) --> { nDay, nMonth, nYear, nHours, nMinutes, nSeconds } #include "FiveWin.ch"function Main()    XBrowse( FW_FolderChanged( "c:\fwh" ...
by Antonio Linares
Sun Mar 03, 2024 8:33 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿Cómo saber la fecha de los cambios a una carpeta?
Replies: 6
Views: 190

updating an archive

... it return me allways false even if for example the date of the last record is equal to the number of today's day example archive date 12.11.2022 nday 6 date today saturday nday 6 How I can resolve ? Function CheckEstrazione()   local oDbf   local dDataEstrazione  ...
by Silvio.Falconi
Mon Nov 14, 2022 12:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: updating an archive
Replies: 9
Views: 601

Re: funciones de FWH y Harbour en un archivo .txt

... SetMouse([<lOnOff>],[<nRow>],[<nCol>])->lIsMouseVisible SetNewDate(<nYear>,<nMonth>,<nDay>)->lSuccess SetNewTime(<nHour>,<nMinute>,<nSecond>)->lSuccess SetPos(<nRow>,<nCol>)->Nil SetPrc(<nRow>,<nCol>)->Nil ...
by rubenfernandez01
Sun Oct 22, 2017 4:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5690

Re: funciones de FWH y Harbour en un archivo .txt

... SetMouse([<lOnOff>],[<nRow>],[<nCol>])->lIsMouseVisible SetNewDate(<nYear>,<nMonth>,<nDay>)->lSuccess SetNewTime(<nHour>,<nMinute>,<nSecond>)->lSuccess SetPos(<nRow>,<nCol>)->Nil SetPrc(<nRow>,<nCol>)->Nil ...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5690

Re: funciones de FWH y Harbour en un archivo .txt

... CtoBit(<cString>,<cBitPattern>)->nInteger CToD(<cDate>)->dDate CtoDoW(<cDayName>)->nDayOfWeek CtoF(<cFloat>)->nNumber CtoMonth(<cMonthName>)->nMonth CtoN(<cDigits>,[<nBase>],[<lNegative>])->nInteger ...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5690

Re: Dates behave different with Sql systax ?

If the syntax is more comfortable you can use the harbour hb_DateTime() function to create a datetime variable. hb_DateTime( nYear, nMonth, nDay, nHour, nMin, nSec, nMill ) // I believe the last argument is milliseconds. The source file rtl\dateshb.c has a fair number of datetime related functions, ...
by rhlawek
Mon Jan 09, 2017 11:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dates behave different with Sql systax ?
Replies: 4
Views: 2137

Re: help for xbrowse tooltip

... script I have the number of column ===> nCol-1 ( the first is teachers) How I can calc the day to have a return data type for sample 16 ( monday at 6 hour) I tried with nday:= int( (nCol-1) / 6) but it not run ok I need this data to search on database the matter od lesson and show it with ...
by Silvio.Falconi
Tue Feb 24, 2015 3:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: help for xbrowse tooltip
Replies: 16
Views: 3994

help for a search function

I wish before to save a data search on the same database if the data passed is the same or not when it search a classroom sample 1A and control if the nday_hour sample "11" is the same and if it found it must return .f. ( no free) but perhaps there is an error and the function not run ok #...
by Silvio.Falconi
Thu Feb 05, 2015 11:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: help for a search function
Replies: 6
Views: 1478

Re: Archivos FTP con Fecha incorrecta en FW

... 07-01-2013, aca estaria correcto. Excelente la funcion que has desarrollado. por si te fuera de utilidad una funcion DMY2DATE( nYear, nMonth, nDay ) ->dFecha para cualqueira que la desee usar. #pragma BEGINDUMP#include "hbapi.h"#include "hbdate.h"/*funcion que construye ...
by carlos vargas
Wed Oct 09, 2013 10:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Archivos FTP con Fecha incorrecta en FW
Replies: 5
Views: 1089

Error : Calendar Control

... being displayed. Looking at the code for OnGetState( oCal, aDates ), however, I think there may be an error: METHOD SetArrayDayState( nMonth, nDay ) is looking for the actual month, but in the function provided, that value is always 1 oCal:SetArrayDayState( 1, Day( aDates[ i ] ) ) I would ...
by TimStone
Fri May 14, 2010 11:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error : Calendar Control
Replies: 16
Views: 3281

Nueva Clase: TCalendar

... maxima de dias posibles en un mes, solo se marcara la posicicion(es) (dias) que deseamos resaltar, se usa el Metodo SetArrayDayState( nMonth, nDay ), es importante decir, el control toma para este caso como primer mes visible 1, indistintamente que mes del año sea, es decir un calendario donde ...
by Daniel Garcia-Gil
Sun Apr 18, 2010 10:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nueva Clase: TCalendar
Replies: 6
Views: 3841

Re: ADDING DATA INTO AN ARRAY....[X,Y]

Use a three element array.

aadd( aDatiDisp, nMonth, nDay, if( lOccupated, .T., .F.) )
by James Bott
Sun Feb 21, 2010 4:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADDING DATA INTO AN ARRAY....[X,Y]
Replies: 14
Views: 4168

Re: Ntocdow(nday)

Silvio wrote:on xharbour guide I saw there is a function converts a numeric week day to its name

NtoCDoW( <nDayOfWeek> ) --> cDayName


Silvio,

this function is in ct.lib and is working as exspected.

Take care, that the week starts with sunday !
by StefanHaupt
Fri Nov 27, 2009 10:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ntocdow(nday)
Replies: 5
Views: 745
Next

Return to advanced search