找回密码
 加入
搜索
查看: 1408|回复: 8

那位大虾帮忙看看 要加什么才能去掉" "呢

[复制链接]
发表于 2009-9-16 16:18:46 | 显示全部楼层 |阅读模式
#include <ComboConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>

$file = FileOpen("110.txt", 0)
If $file = -1 Then
    MsgBox(0, "错误", "不能打开文件.")
    Exit
EndIf
Dim $lines1
While 1
    $line = FileReadLine($file)
    If @error = -1 Then ExitLoop
        $lines1 &= $line&"|"
Wend
FileClose($file)
$first=FileReadLine("110.txt",1)
$file = FileOpen("111.txt", 0)
If $file = -1 Then
    MsgBox(0, "错误", "不能打开文件.")
    Exit
EndIf
Dim $lines
While 1
    $line = FileReadLine($file)
    If @error = -1 Then ExitLoop
        $lines &= $line&"|"
Wend
FileClose($file)
$first=FileReadLine("111.txt",1)
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("选择", 337, 143, 238, 133)
$Combo1 = GUICtrlCreateCombo($first, 88, 26, 177, 5)
GUICtrlSetData(-1, $lines1, "项目3")
$Combo2 = GUICtrlCreateCombo($first, 88, 56, 177, 25)
GUICtrlSetData(-1, $lines, "项目3")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###


While 1
        $nMsg = GUIGetMsg()
        Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit

        EndSwitch
WEnd

下边是110.txt的内容,我只想显示0.0      不想让他显示   "   "         那位大虾帮帮忙改一下
"0.0"
"0.0"
"0.0"
"0.0"
"0.0"
下边是111.txt的内容
"1.1"
"1.1"
"1.1"
"1.1"
"1.1"
 楼主| 发表于 2009-9-16 16:38:52 | 显示全部楼层
本人刚学 最好帮我改好发上来 小弟在此先谢谢了
发表于 2009-9-16 16:39:31 | 显示全部楼层
你这是要干什么,有点绕
发表于 2009-9-16 16:45:44 | 显示全部楼层
是不是这意思:
#include <ComboConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>

$file = FileOpen("110.txt", 0)
If $file = -1 Then
        MsgBox(0, "错误", "不能打开文件.")
        Exit
EndIf
Dim $lines1 = ''
While 1
        $line = FileReadLine($file)
        If @error = -1 Then ExitLoop
        $lines1 &= StringReplace($line, '"', '') & '|'
WEnd
FileClose($file)
$first0 = StringReplace(FileReadLine("110.txt", 1), '"', '')
$file = FileOpen("111.txt", 0)
If $file = -1 Then
        MsgBox(0, "错误", "不能打开文件.")
        Exit
EndIf
Dim $lines = ''
While 1
        $line = FileReadLine($file)
        If @error = -1 Then ExitLoop
        $lines &= StringReplace($line, '"', '') & '|'
WEnd
FileClose($file)
$first = StringReplace(FileReadLine("111.txt", 1), '"', '')

#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("选择", 337, 143, 238, 133)
$Combo1 = GUICtrlCreateCombo($first0, 88, 26, 177, 5)
GUICtrlSetData(-1, $lines1, "项目3")
$Combo2 = GUICtrlCreateCombo($first, 88, 56, 177, 25)
GUICtrlSetData(-1, $lines, "项目3")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###


While 1
        $nMsg = GUIGetMsg()
        Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit

        EndSwitch
WEnd
 楼主| 发表于 2009-9-16 17:00:24 | 显示全部楼层
谢谢啊 问题已经解决   还有个小问题 就是怎么把这贴变成已解决问题呢
发表于 2009-9-16 19:36:40 | 显示全部楼层
谢谢啊 问题已经解决   还有个小问题 就是怎么把这贴变成已解决问题呢
刘强 发表于 2009-9-16 17:00

这个问题我解决不了~
 楼主| 发表于 2009-9-17 15:28:07 | 显示全部楼层
是不是要版主放到已解决里边去呢
发表于 2009-9-17 15:45:14 | 显示全部楼层
搞定了,下次麻烦告知下
 楼主| 发表于 2009-9-19 09:54:54 | 显示全部楼层
好的 下次通知你
您需要登录后才可以回帖 登录 | 加入

本版积分规则

QQ|手机版|小黑屋|AUTOIT CN ( 鲁ICP备19019924号-1 )谷歌 百度

GMT+8, 2025-1-12 13:42 , Processed in 0.075848 second(s), 20 queries .

Powered by Discuz! X3.5 Licensed

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表