SetDate()

SetDate()

Sets the system date

Syntax

      SetDate( <dDate>, [<lMode>] ) --> lSet

Arguments

<dDate> Designates which date to use to set the system date.

<lMode> Designates whether the date should also be set in the CMOS- RAM of an AT. The default is do not write (.F.). Note that in Windows plataform this adjust is automatic, therefore this parameter is without efect.

Returns

SetDate() RETURNs .T. when the date is successfully set.

Description

When you use this FUNCTION to set the system date from within your xHarbour application, all files acquire this date with each write procedure.

Examples

      Set the system date in each case; but the hardware clock only
      on an AT:

      dNewDate := SToD( "19910730" )
      IF ISAT()
         SetDate( dNewDate, .T. )
      ELSE
         SetDate( dNewDate )
      ENDIF

      Or, more compactly:

      SetDate( dNewDate, ISAT() )

Compliance

This function is CA-Cl*pper Tools compatible.

Platforms

Windows, Linux

Files

Source is dattime3.c, library is libct.

Seealso

SETTIME()

2 responses to “SetDate()

  1. Pingback: Harbour Set Functions | Viva Clipper !

  2. Pingback: Harbour All Functions – S | Viva Clipper !

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Google photo

You are commenting using your Google account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.