三星手表整点报时怎么设置

三星手表整点报时怎么设置,第1张

1. 打开三星手表设置界面,找到“应用”选项

2. 滑动屏幕,找到“时钟”选项。

3. 进入“时钟”,找到“报时”选项。

4. 点击“报时”,选择“每小时报时”。

5. 设置好报时之后,退出设置界面即可。您的三星手表会在每小时整点报时。

unit Unit1interfaceuses

Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,

Dialogs, StdCtrls, ExtCtrlstype

TForm1 = class(TForm)

Timer1: TTimer

Label1: TLabel

Label2: TLabel

procedure Timer1Timer(Sender: TObject)

private

{ Private declarations }

public

{ Public declarations }

endvar

Form1: TForm1implementation{$R *.dfm}procedure TForm1.Timer1Timer(Sender: TObject)

var s :string

begin

Label1.Caption := FormatDateTime('yyyy/mm/dd AM/PM hh:mm ', Now + 0.125)

Label2.Caption := FormatDateTime('hhmmss',now())

if(FormatDateTime('hhmmss',now())='000000') then

showmessage(FormatDateTime('yyyy/mm/dd AM/PM hh:mm ', Now + 0.125))

endend.


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/11684853.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存