请问怎么写INI
$Form1 = Guicreate("Form 1", 400, 437, -1, -1)$Input1 = GUICtrlCreateInput("Input1", 90, 25, 180, 20)
$BC = GuiCtrlCreateButton("保存配置", 300, 340, 70, 30)
GuiSetState(@SW_SHOW)
While 1
$Msg = GUIGetMsg()
Switch $Msg
Case $GUI_EVENT_CLOSE
Exit
Case $BC
EndSwitch
Wend
请问当我按了 保存配置之后将Input1中的内容存入 当前目录 config.ini 文件呢? 谢谢各位朋友。问题解决了。
IniWrite("myfile.ini", "设置", "Input1", $Input1) 好像这样子不行。好像这样子获取到的$Input1是 一个数字 GUICtrlRead($Input1) LS正解,你必须先读取输入框的内容在写入 本帖最后由 jycel 于 2010-4-14 13:27 编辑
在保存时加一个判断
if GUICtrlRead($Input1)<> "" then
IniWrite("myfile.ini", "设置", "Input1", guictrlread($input))
else
msgbox(16,"错误提示","请输入后再保存")
endif
中间这个判断要一个就可以了
嗯,学习了 :face (22): 学习了 向前辈致敬
页:
[1]