5

我可以使用哪些 API 或工具来查询系统的功能并选择最适合将 PC 置于睡眠、休眠或关机模式的选项?

感谢您的任何指示。

4

2 回答 2

10

查看 SystemInformation.PowerStatus,然后您可以调用 Application.SetSuspendState 使 PC 进入睡眠或休眠状态,如下所示:

Application.SetSuspendState(PowerState.Hibernate, true, true);
于 2008-12-29T16:35:49.227 回答
2

您可以使用 API:

Declare Function SetSuspendState Lib "PowrProf" (ByVal Hibernate As Integer, ByVal ForceCritical As Integer, ByVal DisableWakeEvent As Integer) As Integer

SetSuspendState(0, 0, 0) 'Sleep without forcing and ?no? wake events
SetSuspendState(1, 0, 0) 'Hibernate without forcing and ?no? wake events

将休眠设置为 1(真)以休眠或 0(假)以休眠。

请参阅此处的 API 。

于 2012-11-11T06:12:11.167 回答