Click or drag to resize

ConTime Function (DWord, DWord, DWord)

X#
Format a set of numbers representing an hour, minute, and second as a time string.

Namespace:  XSharp.Core
Assembly:  XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax
 FUNCTION ConTime(
	dwHour AS DWORD,
	dwMinute AS DWORD,
	dwSeconds AS DWORD
) AS STRING
Request Example View Source

Parameters

dwHour
Type: DWord
The number of hours, up to 23.
dwMinute
Type: DWord
The number of minutes, up to 59.
dwSeconds
Type: DWord
The number of minutes, up to 59.

Return Value

Type: String
A (military) time that corresponds to the passed arguments in the format HH:MO:SS without AM/PM notation
Remarks