vb编译错误必选参数什意思什么意思

PrivateSubForm_Load()'SettheLocalPortpropertytoaninteger.'TheninvoketheListenmethod.t... Private Sub Form_Load()
' Set the LocalPort property to an integer.
' Then invoke the Listen method.
tcpServer.LocalPort = 1001
tcpServer.Listen
frmClient.Show ' Show the client form.
End Sub
Private Sub tcpServer_ConnectionRequest _
(ByVal requestID As Long)
' Check if the control's State is closed. If not,
' close the connection before accepting the new
' connection.
If tcpServer.State <> sckClosed Then _
tcpServer.Close
' Accept the request with the requestID
' parameter.
tcpServer.Accept = requestID '<<<编译错误然后调试就显示这里是蓝色的 不知道这句怎么错了
End Sub
Private Sub txtSendData_Change()
' The TextBox control named txtSendData
' contains the data to be sent. Whenever the user
' types into the textbox, the string is sent
' using the SendData method.
tcpServer.SendData = txtSendData.Text
End Sub
Private Sub tcpServer_DataArrival _
(ByVal bytesTotal As Long)
' Declare a variable for the incoming data.
' Invoke the GetData method and set the Text
' property of a TextBox named txtOutput to
' the data.
Dim strData As String
tcpServer.GetData = strData
txtOutput.Text = strData
End Sub
顺便求一下修改后的程序,这个是tcpserver端的编程。
展开
 我来答
网海1书生
科技发烧友

2013-11-13 · 擅长软件设计、WEB应用开发、小程序
网海1书生
采纳数:12311 获赞数:26228

向TA提问 私信TA
展开全部
tcpServer.Accept = requestID

改为
tcpServer.Accept requestID

Accept是方法而不是属性!属性才需要用等号赋值,方法则后面跟随的是参数

后面的SendData和GetData也要同样处理
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
xbj_hyml
2013-11-13 · TA获得超过285个赞
知道小有建树答主
回答量:552
采纳率:100%
帮助的人:432万
展开全部
tcpServer.Accept --这里 accept 是一个方法 需要一个参数
tcpServer.Accept requestID ’应该这么写,不是等号
or
call tcpServer.Accept (requestID )
更多追问追答
追问
请问编写一个简单的TCP客户和服务端实现简单的通讯要怎么做?老师给的实验指导书里的程序就出现了刚刚我提问的那种错误,能教我一下吗?
追答
1、这个错误指示小错误,语法上的,没有太大问题
2、怎么实现的话,你不是有指导书吗,里面应该有说--就是利用winsock控件去做,然建立一个客户端,和服务端,然后配置好 ip 、port、等属性,具体的步骤,指导书上应该有
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
设计营地
2013-11-13 · 分享交流设计软件相关的知识
设计营地
采纳数:552 获赞数:860

向TA提问 私信TA
展开全部
估计是函数或是方法没有输入参数。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式