VB 提示找不到路径?
s=App.Path&"\统计1\第一组.txt"OpensForInputAs#1DoWhilea<100AndNotEOF(1)a=a+1LineInput#1,sS...
s = App.Path & "\统计1\第一组.txt"
Open s For Input As #1
Do While a < 100 And Not EOF(1)
a = a + 1
Line Input #1, sStr
If a >= 2 And a <= 6 Then
Text3.Text = Text3.Text & sStr & vbCrLf
End If
Loop
Close #1
------可以运行
如果下面这样,就不能运行,提示找不到路径.
fang =combo2.text
s = App.Path & "\fang\第一组.txt" 展开
Open s For Input As #1
Do While a < 100 And Not EOF(1)
a = a + 1
Line Input #1, sStr
If a >= 2 And a <= 6 Then
Text3.Text = Text3.Text & sStr & vbCrLf
End If
Loop
Close #1
------可以运行
如果下面这样,就不能运行,提示找不到路径.
fang =combo2.text
s = App.Path & "\fang\第一组.txt" 展开
展开全部
在你程序所在的文件夹里面放文件夹【fang】,然后把第一次.txt这个文件放到【fang】文件夹中。这样就可以找到路径了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
fang是变量
s = App.Path & "\fang\第一组.txt"
这样就把fang当字符处理了,所以就找不路径了
s = App.Path & "\" & fang & "\第一组.txt"
改成上面应该可以了
s = App.Path & "\fang\第一组.txt"
这样就把fang当字符处理了,所以就找不路径了
s = App.Path & "\" & fang & "\第一组.txt"
改成上面应该可以了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
s = App.Path & "\" & fang & "\第一组.txt"
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询