来自非小数的百分比

发布于 2025-01-03 17:24:30 字数 334 浏览 1 评论 0原文

我有这段代码可以在我的程序中录制视频:

pbVideoProgress.Percent := Round((vidrec / MAX_REC) * 100);

现在我的问题是我想在我的程序上放置一个标签,该标签将在显示下一个视频之前显示一个计时器,我尝试了这个:

Label1.Caption :=inttostr(pbVideoProgress.Percent) ;

但它会显示从 100 开始的百分比% 直到达到 0%(因此将显示下一个视频)。
如何将百分比从实数中的 % 更改为 10、9...直到 0?

I have this code to record a video in my program:

pbVideoProgress.Percent := Round((vidrec / MAX_REC) * 100);

Now my problem is I want to put a label on my program that will display a timer before the next video will be shown, I tried this:

Label1.Caption :=inttostr(pbVideoProgress.Percent) ;

But it will display the percentage from 100% until it reaches 0% (so next video will be shown).
How can I chang that percentage from % in a real number such as from 10, 9... until 0?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

话少心凉 2025-01-10 17:24:30

您显示的代码行不是有效的 Delphi 语法。您必须使用单独的语句:

pbVideoProgress.Percent := Round((vidrec / MAX_REC) * 100);
...
Label1.Caption := IntToStr(100 - pbVideoProgress.Percent);

The code line you showed is not valid Delphi syntax. You have to use separate statements:

pbVideoProgress.Percent := Round((vidrec / MAX_REC) * 100);
...
Label1.Caption := IntToStr(100 - pbVideoProgress.Percent);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文