| 发表于:2008-01-17 15:46:391楼 得分:0 |
inet有个statechanged事件,该事件有个state状态 select case state case 1 text1.text = "正在查询所指定的主机的ip地址" case 2 text1.text = "成功地找到所指定的主机的ip地址" case 3 text1.text = "正在与主机连接" case 4 text1.text = "已与主机连接成功" case 5 text1.text = "正在向主机发送请求" case 6 text1.text = "发送请求已成功" case 7 text1.text = "在接收主机的响应" case 8 text1.text = "成功地接收到主机的响应" case 9 text1.text = "正在解除与主机的连接" case 10 text1.text = "已成功地与主机解除了连接" case 11 text1.text = "与主机通讯时出现了错误" case 12 text1.text = "请求已经完成,并且所有数据均已接收到" end select end sub | | |
|