用vfp表单做个计时关机程序

用vfp表单做个计时关机程序,一个text输入框,一个确定按钮,确定按钮的click命令该怎么写,我想法是调用dos然后将text的值赋予给shutdow-s-t中的t,... 用vfp表单做个计时关机程序,一个text输入框,一个确定按钮,确定按钮的click命令该怎么写,我想法是调用dos 然后将text的值赋予给shutdow -s -t 中的t ,代码怎么写 展开
 我来答
kmyxf
2013-10-30 · TA获得超过9856个赞
知道大有可为答主
回答量:2225
采纳率:63%
帮助的人:977万
展开全部

下面就是定时关机程序,输入多少秒钟后关机(1小时就是3600秒),到时就关闭电脑。若中途不想关机了,还可以随时取消。


1、“定时关机”命令按钮代码:

IF thisform.command1.Caption="定时关机"

 搏瞎差   thisform.text1.Visible= .T.

    thisform.command2.Visible= .T.

   

     thisform.command2.Caption="确定"

      thisform.command2.BackColor=RGB(255,225,0)

      thisform.command2.ForeColor=RGB(225,0,128)

endif

IF thisform.command1.Caption="取消关机"

 

   RUN c:\windows\system32\shutdown.exe -a

  thisform.command2.Caption="退出"

  

  thisform.command2.BackColor=RGB(255,255,0)

  thisform.command2.ForeColor=RGB(255,0,128)

   thisform.text1.Visible= .F.

   

  

   thisform.command2.Visible= .T.

ENDIF

IF thisform.command1.Caption="退出"

    QUIT 

ENDIF 

 IF thisform.command1.Caption="定时关机"


 基皮  thisform.command1.Caption="退出"

   thisform.command1.BackColor=RGB(255,255,0)

  thisform.command1.ForeColor=RGB(255,0,128)

 

 ENDIF

 IF thisform.command1.Caption="取消关机"

   thisform.command1.Caption="定时关机"

   thisform.command1.BackColor=RGB(0,255,255)

   神旁thisform.command1.BackColor=RGB(0,128,255)

   thisform.text1.Visible= .T.

 ENDIF


2、“确定”命令按钮代码:

IF thisform.command2.Caption="确定"

    t=thisform.text1.value

    RUN c:\windows\system32\shutdown.exe -s -t  &t

    thisform.command1.Caption="取消关机"

    thisform.command1.BackColor=RGB(255,128,255)

    thisform.command1.ForeColor=RGB(0,0,160)

    thisform.text1.Visible= .F.

   

      thisform.command1.Visible= .T.

ENDIF

 


IF thisform.command2.Caption="退出"

    QUIT 

ENDIF 

thisform.command2.Caption="退出"

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式