WinTcpS7 V34├── Dll Files
│ ├── WinTcpS7.dll
│ ├── 函数接口.txt
│ └── 可编程控制器PC通讯组件使用说明V25.pdf
├── TcpClient C#2010
│ ├── Form1.Designer.cs
│ ├── Form1.cs
│ ├── Form1.resx
│ ├── My Project
│ │ ├── Application.myapp
│ │ ├── Resources.resx
│ │ └── Settings.settings
│ ├── Properties
│ │ ├── Application.Designer.cs
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── TcpClient.csproj
│ ├── TcpClient.sln
│ ├── TcpClient.suo
│ ├── TcpClient.xml
│ ├── bin
│ │ ├── Debug
│ │ └── Release
│ │ ├── TcpClient.exe
│ │ ├── TcpClient.pdb
│ │ ├── TcpClient.vshost.exe
│ │ ├── TcpClient.vshost.exe.manifest
│ │ ├── TcpClient.xml
│ │ └── WinTcpS7.dll
│ └── obj
│ ├── Debug
│ └── x86
│ ├── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TcpClient.Form1.resources
│ │ ├── TcpClient.Properties.Resources.resources
│ │ ├── TcpClient.csproj.FileListAbsolute.txt
│ │ ├── TcpClient.csproj.GenerateResource.Cache
│ │ ├── TcpClient.exe
│ │ ├── TcpClient.pdb
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ └── Release
│ ├── DesignTimeResolveAssemblyReferences.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── TcpClient.Form1.resources
│ ├── TcpClient.Properties.Resources.resources
│ ├── TcpClient.csproj.FileListAbsolute.txt
│ ├── TcpClient.csproj.GenerateResource.Cache
│ ├── TcpClient.exe
│ ├── TcpClient.pdb
│ └── TempPE
│ └── Properties.Resources.Designer.cs.dll
└── TcpClient VB2010
├── App.config
├── Form1.Designer.vb
├── Form1.resx
├── Form1.vb
├── My Project
│ ├── Application.Designer.vb
│ ├── Application.myapp
│ ├── AssemblyInfo.vb
│ ├── Resources.Designer.vb
│ ├── Resources.resx
│ ├── Settings.Designer.vb
│ └── Settings.settings
├── TcpClient.sln
├── TcpClient.suo
├── TcpClient.vbproj
├── bin
│ ├── Debug
│ └── Release
│ ├── TcpClient.exe
│ ├── TcpClient.pdb
│ ├── TcpClient.vshost.exe
│ ├── TcpClient.vshost.exe.manifest
│ ├── TcpClient.xml
│ └── WinTcpS7.dll
└── obj
└── x86
├── Debug
│ ├── DesignTimeResolveAssemblyReferences.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── GenerateResource.read.1.tlog
│ ├── GenerateResource.write.1.tlog
│ ├── ResolveAssemblyReference.cache
│ ├── TcpClient.Form1.resources
│ ├── TcpClient.Resources.resources
│ ├── TcpClient.exe
│ ├── TcpClient.pdb
│ ├── TcpClient.vbproj.FileListAbsolute.txt
│ ├── TcpClient.vbproj.GenerateResource.Cache
│ ├── TcpClient.vbprojResolveAssemblyReference.cache
│ ├── TcpClient.xml
│ └── TempPE
│ └── My Project.Resources.Designer.vb.dll
└── Release
├── DesignTimeResolveAssemblyReferences.cache
├── DesignTimeResolveAssemblyReferencesInput.cache
├── GenerateResource.read.1.tlog
├── GenerateResource.write.1.tlog
├── Interop.WinTcpCommS7.dll
├── TcpClient.Form1.resources
├── TcpClient.Resources.resources
├── TcpClient.exe
├── TcpClient.pdb
├── TcpClient.vbproj.FileListAbsolute.txt
├── TcpClient.vbproj.GenerateResource.Cache
├── TcpClient.xml
└── TempPE
└── My Project.Resources.Designer.vb.dll
25 directories, 91 files
评论