登录
首页 » C# » Mitsubishi PLC_demo

Mitsubishi PLC_demo

于 2018-10-29 发布 文件大小:47KB
0 152
下载积分: 1 下载次数: 8

代码说明:

  可支持调用三菱PLC的通信,支持以太网口的通信。(It can support communication with MITSUBISHI PLC and support Ethernet port communication.)

文件列表:

三菱PLC_demo, 0 , 2018-01-05
三菱PLC_demo\三菱PLC_demo, 0 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\App.config, 187 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\Form1.Designer.cs, 3208 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\Form1.cs, 9849 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\Form1.resx, 5817 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\Program.cs, 526 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\Properties, 0 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\Properties\AssemblyInfo.cs, 1370 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\Properties\Resources.Designer.cs, 2880 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\Properties\Resources.resx, 5612 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\Properties\Settings.Designer.cs, 1101 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\Properties\Settings.settings, 249 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\bin, 0 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\bin\Debug, 0 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\bin\Debug\AxInterop.ActUtlTypeLib.dll, 13312 , 2016-12-06
三菱PLC_demo\三菱PLC_demo\bin\Debug\Interop.ActUtlTypeLib.dll, 15872 , 2016-12-06
三菱PLC_demo\三菱PLC_demo\bin\Debug\三菱PLC_demo.exe.config, 187 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\bin\Debug\三菱PLC_demo.vshost.exe, 24224 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\bin\Debug\三菱PLC_demo.vshost.exe.config, 187 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\bin\Debug\三菱PLC_demo.vshost.exe.manifest, 490 , 2010-03-17
三菱PLC_demo\三菱PLC_demo\obj, 0 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\obj\Debug, 0 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\obj\Debug\DesignTimeResolveAssemblyReferences.cache, 865 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache, 7139 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\obj\Debug\TempPE, 0 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs, 0 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs, 0 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs, 0 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\obj\Debug\三菱PLC_demo.csproj.FileListAbsolute.txt, 79 , 2018-01-05
三菱PLC_demo\三菱PLC_demo\三菱PLC_demo.csproj, 4344 , 2018-01-05
三菱PLC_demo\三菱PLC_demo.sln, 1011 , 2018-01-05
三菱PLC_demo\三菱PLC_demo.v12.suo, 40960 , 2018-01-05

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • chipgenius_67367
    ChipGenius是一款USB设备芯片型号检测工具,可以自动查询U盘、MP3/MP4、读卡器、移动硬盘等的主控芯片型号、制造商、品牌、并提供相关资料下载地址.当然也可以查询USB设备的VID/PID信息、设备名称、序列号、设备版本等.软件绿色小巧,即插即用,是数码消费者、电子爱好者、 DIY人士和数码维修人员身边的好帮手.我们还将在后续版本中完善更多功能.(ChipGenius is a USB device chip type detection tool that can automatically query U disk, MP3/MP4, card readers, mobile hard disk controller chips, such as type, manufacturer, brand, and provide relevant information to download address. Of course, you can check USB device VID/PID information, device name, serial number, equipment versions. software green compact, plug and play, is the digital consumer electronics enthusiast, DIY and digital maintenance personnel are a good helper around. we will improved in subsequent versions of more features.)
    2010-05-11 23:16:23下载
    积分:1
  • Employee
    创建四个类,分别为Employee类、SalariedEmplyee类、HourlyEmployee类和CommissionEmployee类。其中Employee类是其他三个类的父类。Employee类包含姓名和身份证号。除此之外,SalariedEmployee类还应包含每月工资;HourlyEmployee类还应包含每小时工资数和工作时间数;CommissionEmployee还应包含提成比例和销售总额。每个类都应有合适的构造方法、数据成员的设置和读取方法。编写一个应用程序,创建这些类的对象,并输出与对象相关的信息。注意子类有时需调用父类的构造方法和被覆盖的方法,成员变量定义为private,对有些方法实现重载。 (Create four categories, namely the Employee class, SalariedEmplyee class, HourlyEmployee classes and CommissionEmployee classes. Employee class is the parent class where the other three classes. Employee class contains the name and ID number. In addition, SalariedEmployee class also includes a monthly salary HourlyEmployee class should also include the number of hourly wages and the number of working hours CommissionEmployee should also include the proportion and total sales commission. Each class should have the right to set and read the constructor method, data members. Write an application to create objects of these classes, and output information associated with the object. Sometimes need to call attention to a subclass of the parent class constructor and methods are covered, member variables defined as private, to achieve overloading of some methods.)
    2013-11-27 11:43:06下载
    积分:1
  • 602937
    简单网络注册源码程序,结合易语言MySQL支持库,使用服务器和客户组件进行连接,演示简单的网络注册的过程。(Simple Network registration source program, combined with easy language support MySQL , using the server and client components to connect, demonstrate simple web registration process.)
    2015-12-10 16:01:45下载
    积分:1
  • nativequickwidgets-0.1
    QT + QML 用QML实现QT的基本控件。包括label,button(QT+ QML)
    2012-06-19 08:52:31下载
    积分:1
  • Ch3
    AUTO MPG FRXDTCVB RETDYFG 5RTFGNH 6TYFUGH
    2016-07-08 21:17:36下载
    积分:1
  • 项目中在使用的POP3 接收邮件类库,亲测通过,附完整源码下载(OpenPOP.NET)
    已经测试过 qq邮箱和 163邮箱,显示一切正常,无乱码现象                                             
    2020-11-16 20:09:39下载
    积分:1
  • pzrform
    是3GPP中GSM最重要的标准,业内简称GSM0505 这个标准详细规定了GSM发射与接收技术,其中GMSK,8-PSK,B(GSM0505 is the most important standard of GSM in 3GPP, which specifies the GSM transmitting and receiving technology in detail, including GMSK,8-PSK,B)
    2019-01-05 02:30:16下载
    积分:1
  • 学生管理系统(1)
    说明:  用C#对sql数据库实现增删改查的入门级示例,带数据库脚本文件和实训报告。(An introductory example of adding, deleting and modifying SQL database with C# and database script file and training report.)
    2020-06-25 13:00:02下载
    积分:1
  • UIControl
    1. 封装了基本界面控件, 是网狐平台代码界面库,可以研究研究(Encapsulates the basic interface controls, is Fox network platform code interface library, you can Study)
    2016-03-13 17:01:07下载
    积分:1
  • DJDAO
    DAO数据库简单应用,可以独立创建Access数据库,也可以随意删除,DAO上手必备的教程!(DAO simple database application, and could create Access database, can also randomly deleted, DAO handcuffed indispensable guide!)
    2007-01-17 11:26:26下载
    积分:1
  • 696518资源总数
  • 105547会员总数
  • 4今日下载