xz00311 发表于 2009-12-7 14:19:39

是的ini更加方便,因为这是头那一点你看了误解了

ap4119 发表于 2009-12-20 18:04:37

正需要先來看看

pizigao 发表于 2009-12-21 08:36:42

20块啊~有点贵啊

kodin 发表于 2009-12-21 15:21:14

还是用INI方法好!
如果用纯文本方式,到时候读取估计还需要用到正则。

lmx860512 发表于 2009-12-21 21:06:26

谢谢大家的帮助 最近在出差回去了 好好研究下

水木子 发表于 2009-12-21 22:04:42

本帖最后由 水木子 于 2009-12-21 22:07 编辑

我冤枉啊!我是放的免费附件,1分钱也没收!那20块是论坛收的税吧!
测试方法前面我已经说明了!我这个就是读取的ini,其实都是很简单操作,大家不要往深处想!

131738 发表于 2009-12-21 22:16:50

FileReadLine
--------------------------------------------------------------------------------

从此前已打开的文本文件中读取指定行的字符.


FileReadLine ( 文件句柄 或 "文件名" [, 行号] )

131738 发表于 2009-12-21 22:53:28

本帖最后由 131738 于 2009-12-21 22:58 编辑

回复 22# lmx860512
一个月了,还没解决吗?#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
Opt("GUIOnEventMode", 1)
#Region ### START Koda GUI section ### Form=E:\000.kxf
$Form1_1 = GUICreate("Form1", 308, 198, 192, 124)
GUISetOnEvent($GUI_EVENT_CLOSE, "Form1_1Close")
$Label1 = GUICtrlCreateLabel("姓    名", 24, 40, 52, 24)
GUICtrlSetFont(-1, 12, 400, 0, "MS Sans Serif")

$Label2 = GUICtrlCreateLabel("帐号", 24, 80, 44, 24)
GUICtrlSetFont(-1, 12, 400, 0, "MS Sans Serif")

$Input1 = GUICtrlCreateInput("", 88, 40, 169, 21)

$Input2 = GUICtrlCreateInput("", 88, 80, 169, 21)

$Input3 = GUICtrlCreateInput("", 88, 136, 73, 21)

$Button1 = GUICtrlCreateButton("确    定", 184, 136, 65, 25)
GUICtrlSetOnEvent(-1, "Button1Click")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
        Sleep(100)
WEnd

Func Button1Click()
        Local $Text = FileReadLine ( FileOpen ( @ScriptDir & "000.txt",0 ), GUICtrlRead ( $Input3 ) )
        $Text0 = StringSplit ( $Text, @TAB )
        GUICtrlSetData ( $Input1, $Text0 )
        GUICtrlSetData ( $Input2, $Text0 )
EndFunc
Func Form1_1Close()
        Exit
EndFunc

131738 发表于 2009-12-21 22:57:14

回复 25# 131738

hzxymkb 发表于 2009-12-22 13:14:41

我连20块钱都没有!等我有了再来下了!做个记号先!

hzxymkb 发表于 2009-12-22 13:21:02

下载个看看效果是不是我想要的!

lmx860512 发表于 2009-12-24 10:07:26

:face (36):在外地学习,还差一个礼拜才能回去在这边上个网都难啊谢谢同志们这么热心

xz00311 发表于 2009-12-24 14:32:20

为什么就不行呢郁闷

wwant 发表于 2009-12-24 14:41:55

这么多人说了,我就看看就好了

ndyndy 发表于 2009-12-24 14:57:08

读行,以空格为标志分段,读入数组,填入
页: 1 [2] 3 4
查看完整版本: AU3读取TXT文本并写入指定位置的问题