恳求VB一对多的TCP通信程序代码S:vb.net 多线程 C:vb/VB Private Sub sckServer_ConnectionRequest _ (Index As Integer, ByVal requestID As Long) If Index = 0 Then intMax = intMax + 1 Load sckServer(intMax) sckServer(intMax).LocalPort = 0 sckServer(intMax).Accept requestID Load txtData(intMax) End If End Sub 这是MSDN的例子原代码,但我在编译时总是报错:过程声明与同名事件或过程的描述不匹配。 有谁知道是怎么回事啊? http://www.m5home.com/blog/article.asp?id=169
请教一下:我用vb写了一个调用Illustrator的测试程序,代码很简单:Private Sub Command1_Click() Dim app As New Illustrator.Application Dim doc As Illustrator.Document Dim thislayer As Illustrator.Layer ......