| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 506 人关注过本帖
标题:一个很严峻的问题,请进各位
取消只看楼主 加入收藏
yts111
Rank: 1
等 级:新手上路
帖 子:79
专家分:0
注 册:2006-5-17
收藏
 问题点数:0 回复次数:3 
一个很严峻的问题,请进各位

Private Declare Function getdata Lib "sgid.dll" Alias "_GetData@4" (ByVal s As String) As Boolean
Dim n As Long
Dim fp As Long
Dim file1 As String
Dim b As Boolean
Dim s As String * 40
List1.Clear
n = getdatanum(mm, nn)
If n > 0 Then
fp = FreeFile
file1 = Year(Date) & Format(Month(Date), "00") & Format(Day(Date), "00") + ".txt"
Open App.Path & "\" & file1 For Append As fp
aaa: b = getdata(s)
If b = False Then
GoTo endd
End If
Print #fp, s
List1.AddItem (s)
GoTo aaa
Else
If n = 0 Then
List1.AddItem ("无数据")
Else
List1.AddItem ("错误")
End If
Exit Sub
endd:
Close fp
这个人家提供的一个VB调用那个"sgid.dll"动态库的代码
我改到C#中来,是这样的
[DllImport("sgid.dll",EntryPoint="_GetData@4")]
public static extern bool getdata(string s);
然后我大概的是这样调用的
do
{
this.WriteTxt(ss);
}
while(getdata(ss));其中this.WriteTxt(ss),的方法是写入txt文本文件的。
private void WriteTxt(string s)
{
string path=@"c:\kqxt.txt";
if(!File.Exists(path))
{
using(StreamWriter sw=File.CreateText(path))
{
sw.WriteLine(s);
}
}
else
{
using(StreamWriter sw=File.AppendText(path))
{
sw.WriteLine(s);
}
}
}
问题是程序运行后在path=@"c:\kqxt.txt这个文本文件里什么数据也没有,奇怪,各位帮我看看是不是我的调用的时候有问题,又该怎么来改呢!谢谢 谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢谢
2006-11-23 20:33
yts111
Rank: 1
等 级:新手上路
帖 子:79
专家分:0
注 册:2006-5-17
收藏
得分:0 
不是这个问题,一定是调用的问题,因为那段代码 我放到其他地方是可以的!

希望能和大家交流一起进步我的QQ:274405946 欢迎加我
2006-11-23 20:55
yts111
Rank: 1
等 级:新手上路
帖 子:79
专家分:0
注 册:2006-5-17
收藏
得分:0 
呵呵自己顶上去。嘿嘿,,,人呢人呢

希望能和大家交流一起进步我的QQ:274405946 欢迎加我
2006-11-23 22:27
yts111
Rank: 1
等 级:新手上路
帖 子:79
专家分:0
注 册:2006-5-17
收藏
得分:0 
设置了呀,全是空但是已经循环了那么多次!但每次ss的值都是空呀!

希望能和大家交流一起进步我的QQ:274405946 欢迎加我
2006-11-24 08:49
快速回复:一个很严峻的问题,请进各位
数据加载中...
 
   



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

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