qq342252004 发表于 2008-6-24 13:54:43

浏览的图片位置写入到配置文件

#include <GUIConstants.au3>

#Region ### START Koda GUI section ### Form=
$AForm1 = GUICreate("AForm1", 336, 169, 193, 125)
$Input1 = GUICtrlCreateInput("Input1", 40, 56, 169, 21)
$Button1 = GUICtrlCreateButton("浏览", 232, 48, 75, 25, 0)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###


While 1
        $nMsg=GUIGetMsg()
        Select
                Case $nMsg =$Button1
                        GUICtrlSetData($Input1,FileOpenDialog("请选择存放图片的位置:","C:\", "图片文件(*.jpg;*.bmp)", 1 + 4 ))
                        IniWrite(@WindowsDir &"\logo.ini","logo","logo",GUICtrlRead($Input1))
ExitLoop                                       
Case $nMsg= $GUI_EVENT_CLOSE
ExitLoop
EndSelect
WEnd

logo.ini内容如下:

logo=

[ 本帖最后由 qq342252004 于 2008-6-25 08:37 编辑 ]

顽固不化 发表于 2008-6-24 15:16:36

知道你的意思了。
把这句这么改:
IniWrite(@WindowsDir &"\logo.ini","logo","logo",GUICtrlRead($Input1))

[ 本帖最后由 顽固不化 于 2008-6-24 15:22 编辑 ]

skyfree 发表于 2008-6-24 17:15:35

用AU3的话,抛弃以往写其他程序时的概念吧,呵呵。

如果你要把$Input1里面的字提取出来,AU3的做法是把它“读”出来,就像楼上所说的GUICtrlRead($Input1)

qq342252004 发表于 2008-6-25 08:34:59

谢谢了:face (33):
页: [1]
查看完整版本: 浏览的图片位置写入到配置文件