From 61173c1b58efa79c0ba6b08348d2796a249d0186 Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Sat, 1 Sep 2012 09:51:27 -0500 Subject: move help structure one directory up Change-Id: Ie970e39fbb6795a92d9fdd13510409d7dcd071bc --- source/text/sbasic/shared/03030204.xhp | 66 ++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 source/text/sbasic/shared/03030204.xhp (limited to 'source/text/sbasic/shared/03030204.xhp') diff --git a/source/text/sbasic/shared/03030204.xhp b/source/text/sbasic/shared/03030204.xhp new file mode 100644 index 0000000000..d75415cee2 --- /dev/null +++ b/source/text/sbasic/shared/03030204.xhp @@ -0,0 +1,66 @@ + + + + + + + + +Second Function [Runtime] +/text/sbasic/shared/03030204.xhp + + +Sun Microsystems, Inc. +converted from old format - fpe + + + +
+Second function + +Second Function [Runtime] +Returns an integer that represents the seconds of the serial time number that is generated by the TimeSerial or the TimeValue function. +
+Syntax: +Second (Number) +Return value: +Integer +Parameters: + +Number: Numeric expression that contains the serial time number that is used to calculate the number of seconds. +This function is the opposite of the TimeSerial function. It returns the seconds of a serial time value that is generated by the TimeSerial or TimeValue functions. For example, the expression: +Print Second(TimeSerial(12,30,41)) +returns the value 41. + + +Example: +Sub ExampleSecond +MsgBox "The exact second of the current time is "& Second( Now ) +End sub + +
-- cgit