| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 405 人关注过本帖
标题:[求助]哪位高手帮忙看一下
只看楼主 加入收藏
crystal_2345
Rank: 1
等 级:新手上路
帖 子:11
专家分:0
注 册:2006-11-22
收藏
 问题点数:0 回复次数:2 
[求助]哪位高手帮忙看一下

为什么接收不到串口的数据?
Private Sub oCommTimer_Timer()
Dim oCommStream As Object
Set oCommStream = oGpsDataServer.GetCommStream
If TypeName(oCommStream) = "CCommStream" Then
oCommStream.GetInputBuff
End If
End Sub
然后

Public Sub GetInputBuff() /被上面函数调用
Dim strInput As String
Dim i As Integer
Dim A As String
Dim B As String
Dim C As String
m_oComm.OutBufferCount = 0
m_oComm.InBufferCount = 0
On Error GoTo errhandle

m_oComm.Output = "AT" & vbCrLf /向串口发送AT指令,得到的响应应该是OK
Call SleepIt(1)
strInput = m_oComm.Input
A = strInput
MsgBox A /但收不到串口发回来的OK



m_oComm.Output = "AT+CMGF=1" & vbCrLf /向串口发送AT+CMGF=1指令,得到的响应应该是OK
Call SleepIt(1)
strInput = m_oComm.Input
B = strInput
MsgBox B /现在同样收不到



m_oComm.Output = "AT+CMGR=1" & vbCrLf
Call SleepIt(1)
strInput = m_oComm.Input
C = strInput
MsgBox C
End Select

strInput = Mid(C, 59, 43)

延迟函数
Public Sub SleepIt(SleepTime As Double)
Dim bdt As Boolean
bdt = True
Do While bdt
SleepTime = SleepTime + 1
If SleepTime > 10000 Then bdt = False

Loop

End Sub
请问这是为什么??应该怎么改动?

搜索更多相关主题的帖子: 函数 数据 Object 
2007-01-27 18:35
crystal_2345
Rank: 1
等 级:新手上路
帖 子:11
专家分:0
注 册:2006-11-22
收藏
得分:0 
高手们啊!!!帮帮忙
2007-01-27 20:04
crystal_2345
Rank: 1
等 级:新手上路
帖 子:11
专家分:0
注 册:2006-11-22
收藏
得分:0 
高手
2007-01-28 19:31
快速回复:[求助]哪位高手帮忙看一下
数据加载中...
 
   



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

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