vxpdisk 发表于 2010-1-4 03:07:36

进度条核%分比补丁安装

本帖最后由 vxpdisk 于 2010-1-4 20:39 编辑

我有10个微软补丁想采用默认安装方式,加配合进度条和%分比怎么实现,望高手指点。。
静默安装补丁大侠们都知道。。这些参数在进度条哪里这么写!!#include <GUIConstantsEx.au3>
#include <ProgressConstants.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("系统补丁自动安装", 396, 148, 192, 114)
$Group1 = GUICtrlCreateGroup("系统补丁自动安装", 8, 8, 377, 129)
$Progress1 = GUICtrlCreateProgress(16, 56, 337, 41)
GUICtrlCreateGroup("", -99, -99, 1, 1)
GUISetState(@SW_SHOW)
For $I = 1 To 10
                        GUICtrlSetData($Progress1,$I&"0")               
                        Next
#EndRegion ### END Koda GUI section ###
While 1
        $nMsg = GUIGetMsg()
        Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit

        EndSwitch
WEnd

weeks1 发表于 2010-1-4 09:01:41

说得不错 再看一次

qqgghh1 发表于 2010-1-4 09:04:07

这里有你要的补丁更新和进度条使用实例。
请参阅,谢谢!
http://www.autoitx.com/forum.php?mod=viewthread&tid=7480&highlight=%B2%B9%B6%A1

huangu125 发表于 2010-1-4 09:11:30

在本站搜索“进度”可以找到有关进度条的实例的

水木子 发表于 2010-1-4 10:44:47

本帖最后由 水木子 于 2010-1-4 10:49 编辑

10个,完成1个进度走10%,不需要什么参数吧!

LZ的问题和这个问题比较相似,建议去看看吧!
http://www.autoitx.com/forum.php?mod=viewthread&tid=10850&extra=&page=1

veve 发表于 2017-7-14 13:36:16

学习一下!!!!!!!!!!!

veve 发表于 2017-7-14 13:36:42

怎么没有更漂亮的呢
页: [1]
查看完整版本: 进度条核%分比补丁安装