yarsye 发表于 2010-9-1 16:19:57

想咨询下大家有没有遇到过这个对话框?

遇到过多次 编译程序时弹出来这个对话框 不知道是怎么一回事上图吧

yarsye 发表于 2010-9-1 16:21:40

关键是 我运行我那代码 一点问题都没有 没报错 没警告 一切正常
一编译就出现这个 关掉这个对话框 然后重新再试一次就好了 不懂

itljl 发表于 2010-9-1 16:34:42

没钱装win7

zhongzijie 发表于 2010-9-1 16:54:56

回复楼主,没遇到过{:face (125):}

yarsye 发表于 2010-9-1 16:56:29

奇怪就奇怪在 “一编译就出现这个 关掉这个对话框 然后重新再试一次就好了 ”

131738 发表于 2010-9-1 18:10:00

没钱装win7
itljl 发表于 2010-9-1 16:34 http://www.autoitx.com/images/common/back.gif

要钱的吗。。。。。。。。。

lixiaolong 发表于 2010-9-1 18:36:12

不看代码是查不到原因的

lixiaolong 发表于 2010-9-1 18:36:21

不看代码是查不到原因的

kn007 发表于 2010-9-1 21:57:19

重装系统试试。。。win7没这问题

itljl 发表于 2010-9-1 22:30:59

回复 6# 131738


升级硬件不要钱? 5年前的旧机能流畅运行WIN7?

131738 发表于 2010-9-1 23:36:29

回复131738


升级硬件不要钱? 5年前的旧机能流畅运行WIN7?
itljl 发表于 2010-9-1 22:30 http://www.autoitx.com/images/common/back.gif

不是吧,我就是5年前的机子,就加了个1G水货内存条,流畅不流畅的对付着过吧。。。。

itljl 发表于 2010-9-2 00:08:42

回复 11# 131738


    兄弟,我宁愿用XP速度快一点,呵呵。卡在那里等着实在难受。

yarsye 发表于 2010-9-2 16:40:35

感谢大家的回复
我机器Win7 32 CHS + AutoIT v3.3.0.0 每个第一次Ctrl + F7都会遇到那个错误
换台Xp 32 CHS + AutoIT v3.3.0.0 Ctrl + F7 到现在还没遇到问题

但是在那台Win7 系统上 我编译别的代码 没有问题

我在怀疑代码有问题 等下传代码

yarsye 发表于 2010-9-2 16:51:27

#cs ----------------------------------------------------------------------------
       
        AutoIt Version: 3.3.0.0
        Author:         myName
       
        Script Function:
        Template AutoIt script.
       
#ce ----------------------------------------------------------------------------
#include <GuiEdit.au3>
#include <Screencapture.au3>
#include <file.au3>
#include <GuiConstantsEx.au3>
#include <WindowsConstants.au3>
#include <StaticConstants.au3>

Opt("GUIOnEventMode", 1)

Global $Formtitle = " Installation Testing", $Ver = '1.0'
Global $boxleft = 30
Local $Form, $box1, $msg, $button1, $box2, $box3, $ch

$ch = 0

If FileExists($Ini_Path) Then
        ;====
        Dim $var
        $var = IniReadSectionNames(@DesktopDir & "\Installation.ini")
        If @error Then
                MsgBox(4096, "", "Error occurred, probably no INI file.")
        Else
                $a = $var
                For $i = 2 To $a
                        If $var[$i] <= 7 Then
                                $ch = "Radio" & $var[$i]
                                IniRenameSection(@DesktopDir & "\Installation.ini", $var[$i], "8")
                                Call($ch)
                        EndIf

                Next
                RegDelete("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run", @ScriptName)
;~                 FileDelete($Ini_Path)
                FileDelete(@DesktopDir & "\Setup.ini")

        EndIf
        ;====
;~         For $icounter = 1 To 7 Step 1

;~                 $Ini_Read_Section = IniRead($Ini_Path, $icounter, "key", "")
;~                 If $Ini_Read_Section <> "" And $Ini_Read_Section <= 7 Then

;~                         $ch = "Radio" & $Ini_Read_Section

;~                 EndIf

;~         Next
EndIf

$Form1_1 = GUICreate("", 421, 387, 193, 125, $WS_POPUP)

GUISetFont(10, 800, 0, "MS Sans Serif")
GUISetBkColor(0xD8E4F8)

GUICtrlCreateLabel($Formtitle, 120, 10, 500, 33)


$Radio2 = GUICtrlCreateCheckbox(" ", 80, 88, 33, 49)
GUICtrlSetCursor(-1, 0)
$Radio3 = GUICtrlCreateCheckbox(" ", 80, 128, 33, 49)
GUICtrlSetCursor(-1, 0)
$Radio4 = GUICtrlCreateCheckbox(" ", 80, 168, 33, 49)
GUICtrlSetCursor(-1, 0)
$Radio5 = GUICtrlCreateCheckbox(" ", 80, 208, 33, 49)
GUICtrlSetCursor(-1, 0)
$button1 = GUICtrlCreateButton("Browse", 140, 58, 150, 33, 0)
GUICtrlSetBkColor(-1, 0xFFFF00)
GUICtrlSetCursor(-1, 0)
$Button2 = GUICtrlCreateButton("1Install", 128, 98, 200, 25, 0)

$Button3 = GUICtrlCreateButton("2 Install)", 128, 138, 200, 25, 0)

$Button4 = GUICtrlCreateButton("3 Install", 128, 182, 200, 25, 0)

$Button5 = GUICtrlCreateButton("Full CD Re -Installation", 128, 224, 200, 25, 0)

$Radio6 = GUICtrlCreateCheckbox(" ", 80, 248, 33, 49)
GUICtrlSetCursor(-1, 0)
$Button6 = GUICtrlCreateButton("Uninstallation", 128, 264, 200, 25, 0)

$Button7 = GUICtrlCreateButton("Start", 140, 304, 150, 33, 0);left, top , width , height
GUICtrlSetBkColor(-1, 0xFFFF00)
GUICtrlSetCursor(-1, 0)
$Group1 = GUICtrlCreateGroup("", 48, 40, 337, 257)

$label0 = GUICtrlCreateLabel("X", 410, 0, 50, 50)
GUICtrlSetCursor(-1, 0)

GUICtrlCreateLabel("Version :" & $Ver, 320, 370, 95, 15)
GUICtrlSetState(-1, 128)


GUICtrlCreateLabel("", 0, 0, 421, 387, $WS_CLIPCHILDREN, $GUI_WS_EX_PARENTDRAG)
GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT)

GUISetState(@SW_SHOW)

GUISetOnEvent($label0, "Radio0")

GUICtrlSetOnEvent($label0, "Radio0")
GUICtrlSetOnEvent($button1, "Radio1");_
GUICtrlSetOnEvent($Button2, "Radio2");
GUICtrlSetOnEvent($Button3, "Radio3");
GUICtrlSetOnEvent($Button4, "Radio4");
GUICtrlSetOnEvent($Button5, "Radio5");Full CD Re -Installation
GUICtrlSetOnEvent($Button6, "Radio6");Uninstallation
GUICtrlSetOnEvent($Button7, "Radio7");Start

While 1
        $msg = GUIGetMsg()
        Select
                Case $msg = -3
                        Radio0()
                Case $msg = $button1
                        Radio1()
                Case $msg = $Button2
                        Radio2()
                Case $msg = $Button3
                        Radio3()
                Case $msg = $Button4
                        Radio4()
                Case $msg = $Button5
                        Radio5()
                Case $msg = $Button6
                        Radio6()
                Case $msg = $Button7
                        Radio7()
        EndSelect
WEnd

func Radio0()
endfunc
func Radio1()
endfunc
func Radio2()
endfunc
func Radio3()
endfunc
func Radio4()
endfunc
func Radio5()
endfunc
func Radio6()
endfunc
func Radio7()
endfunc

yarsye 发表于 2010-9-2 16:52:14

哎。。。奇怪问题又出现了 遇不到那个问题了!!!
页: [1]
查看完整版本: 想咨询下大家有没有遇到过这个对话框?