| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 663 人关注过本帖
标题:vb保存txt保存数对齐问题
取消只看楼主 加入收藏
xd12345
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2013-12-22
结帖率:0
收藏
已结贴  问题点数:20 回复次数:3 
vb保存txt保存数对齐问题
Private Sub Command8_Click()
List3.AddItem Label3 & Text1
List3.AddItem Text2 & Combo2
List3.AddItem Label6 & Text32 & Label80 & Text4
List3.AddItem Label31 & "       " & Label32 & "    " & Label34 & "    " & Label33 & "    " & Label35
List3.AddItem Combo19 & "    " & Combo3 & "     " & Text7 & "      " & Text6 & "      " & Text3
List3.AddItem " ---------------------------------------   "
List3.AddItem Combo16 & "  " & Combo4 & "     " & Text12 & "      " & Text21 & "      " & Text14
List3.AddItem Text49 & Text47 & "    " & Combo10 & "     " & Text9 & "      " & Text8 & "      " & Text11
List3.AddItem Combo15 & "     " & Combo6 & "     " & Text18 & "      " & Text17 & "      " & Text15
List3.AddItem Combo14 & "    " & Combo5 & "     " & Text19 & "      " & Text20 & "      " & Text16
List3.AddItem Combo17 & "     " & Combo11 & "     " & Text10 & "      " & Text38 & "      " & Text13
List3.AddItem Combo13 & Label55 & "   " & Combo7 & "     " & Text25 & "      " & Text24 & "      " & Text22
List3.AddItem Combo12 & Label71 & "    " & Combo8 & "     " & Text26 & "      " & Text27 & "      " & Text23
List3.AddItem Frame10 & Text28
exittxt:
CommonDialog1.CancelError = True
On Error GoTo a
CommonDialog1.Filter = "all files(*.*)|(*.*)|text file(*.txt)|*.txt"
CommonDialog1.FilterIndex = 2
CommonDialog1.Flags = &H2  '保存的时候如果有同名文件提示是否替换
CommonDialog1.ShowSave
lujing = CommonDialog1.FileName
If lujing <> "" Then
Open lujing For Output As #1
For i = 0 To List3.ListCount - 1
Print #1, List3.List(i)
Next
Close #1
End If
a:
 List3.Clear
Exit Sub
图片附件: 游客没有浏览图片的权限,请 登录注册


保存数对齐问题,当其中一位空是就出现不对齐了,能不能有更好的方法,请教各位
搜索更多相关主题的帖子: Text2 
2014-01-03 10:54
xd12345
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2013-12-22
收藏
得分:0 
指定  某行,第几格点写???
2014-01-03 13:51
xd12345
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2013-12-22
收藏
得分:0 
请帮修改下行不风吹过,就是要求这样
2014-01-03 15:40
xd12345
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2013-12-22
收藏
得分:0 
一句惊人,呵谢了,
2014-01-03 16:31
快速回复:vb保存txt保存数对齐问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017320 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved