• <cite id="uwv89"></cite>
      1. 亚洲综合小综合中文字幕,国产久爱免费精品视频,精品国产品香蕉在线,国产午夜精品在人线播放,精品一二三四区在线观看,国产成人无码免费看视频软件 ,色欲久久人妻内射,午夜在线观看成人av
        wenluderen
        人人為我我為人人
        級(jí)別: 略有小成
        精華主題: 0
        發(fā)帖數(shù)量: 186 個(gè)
        工控威望: 322 點(diǎn)
        下載積分: 6183 分
        在線(xiàn)時(shí)間: 43(小時(shí))
        注冊(cè)時(shí)間: 2010-09-23
        最后登錄: 2024-02-19
        查看wenluderen的 主題 / 回貼
        樓主  發(fā)表于: 2018-07-23 14:32
        MX Component 使用控件通訊 就可以直接PLC內(nèi)部地址的名字,不要在整個(gè)標(biāo)簽。
        標(biāo)簽?zāi)芰撕芫?還是不行。


        ****
        控件有很多






        感覺(jué)三菱每個(gè)可以通訊的硬件 都有一個(gè)對(duì)應(yīng)的  控制可以使用

            
        本帖最近評(píng)分記錄:
      2. 下載積分:+5(木木2012) 感謝分享!
        不小心遇見(jiàn)你
        自動(dòng)項(xiàng)目、PLC、視覺(jué)、通訊等工控軟件開(kāi)發(fā)QQ3515716
        級(jí)別: 工控俠客

        精華主題: 3 篇
        發(fā)帖數(shù)量: 2131 個(gè)
        工控威望: 3053 點(diǎn)
        下載積分: 25412 分
        在線(xiàn)時(shí)間: 1532(小時(shí))
        注冊(cè)時(shí)間: 2014-01-05
        最后登錄: 2025-09-04
        查看不小心遇見(jiàn)你的 主題 / 回貼
        1樓  發(fā)表于: 2018-07-23 14:40
        項(xiàng)目、視覺(jué)、通訊QQ3515716
        wenluderen
        人人為我我為人人
        級(jí)別: 略有小成
        精華主題: 0
        發(fā)帖數(shù)量: 186 個(gè)
        工控威望: 322 點(diǎn)
        下載積分: 6183 分
        在線(xiàn)時(shí)間: 43(小時(shí))
        注冊(cè)時(shí)間: 2010-09-23
        最后登錄: 2024-02-19
        查看wenluderen的 主題 / 回貼
        2樓  發(fā)表于: 2018-07-23 14:46
        驗(yàn)證通過(guò)AxActUtlTypeLib.AxActUtlType訪(fǎng)問(wèn)Q04UDV的CPU,硬件接口為以太網(wǎng)
        ***
        新建一個(gè)VB.net  ,窗口程序,在工具欄里面添加 控件
        如下圖:

        wenluderen
        人人為我我為人人
        級(jí)別: 略有小成
        精華主題: 0
        發(fā)帖數(shù)量: 186 個(gè)
        工控威望: 322 點(diǎn)
        下載積分: 6183 分
        在線(xiàn)時(shí)間: 43(小時(shí))
        注冊(cè)時(shí)間: 2010-09-23
        最后登錄: 2024-02-19
        查看wenluderen的 主題 / 回貼
        3樓  發(fā)表于: 2018-07-23 15:00
        添加OPEN 和CLOSE函數(shù)

        #Region "打開(kāi)鏈接"
            Private Sub btn_Open_Click(sender As Object, e As EventArgs) Handles btn_Open.Click
                Dim iReturnCode As Integer              'Return code
                Dim iLogicalStationNumber As Integer    'LogicalStationNumber for ActUtlType

                ClearDisplay()

                Try
                    If GetIntValue(txt_LogicalStationNumber, iLogicalStationNumber) = False Then
                        'If failed, this process is end.
                        Exit Sub
                    End If
                    AxActUtlType1.ActLogicalStationNumber = iLogicalStationNumber

                    iReturnCode = AxActUtlType1.Open()

                    If iReturnCode = 0 Then
                        'When the Open method is succeeded, disable the TextBox of 'LogocalStationNumber'.
                        txt_LogicalStationNumber.Enabled = False
                    End If
                Catch exception As Exception
                    MessageBox.Show(exception.Message, Name, MessageBoxButtons.OK, MessageBoxIcon.Error)
                    Exit Sub

                End Try
                txt_ReturnCode.Text = String.Format("0x{0:x8} [HEX]", iReturnCode)
            End Sub
        #End Region

        **************
        #Region "關(guān)閉鏈接"
            Private Sub btn_Close_Click(sender As Object, e As EventArgs) Handles btn_Close.Click
                Dim iReturnCode As Integer     'Return code
                ClearDisplay()


                Try
                    iReturnCode = AxActUtlType1.Close()
                    If iReturnCode = 0 Then
                        txt_LogicalStationNumber.Enabled = True
                    End If

                Catch exception As Exception
                    MessageBox.Show(exception.Message, Name, MessageBoxButtons.OK, MessageBoxIcon.Error)


                End Try
                txt_ReturnCode.Text = String.Format("0x{0:x8} [HEX]", iReturnCode)
            End Sub
        #End Region

        ****
        測(cè)試可以通過(guò)

        wenluderen
        人人為我我為人人
        級(jí)別: 略有小成
        精華主題: 0
        發(fā)帖數(shù)量: 186 個(gè)
        工控威望: 322 點(diǎn)
        下載積分: 6183 分
        在線(xiàn)時(shí)間: 43(小時(shí))
        注冊(cè)時(shí)間: 2010-09-23
        最后登錄: 2024-02-19
        查看wenluderen的 主題 / 回貼
        4樓  發(fā)表于: 2018-07-23 15:05
        隨機(jī)讀取

        #Region "隨機(jī)寫(xiě)入 PLC里面的地址"
            Private Sub btn_ReadDeviceRandom2_Click(sender As Object, e As EventArgs) Handles btn_ReadDeviceRandom2.Click
                Dim iReturnCode As Integer              'Return code
                Dim szDeviceName As String = ""         'List data for 'DeviceName'
                Dim iNumberOfDeviceName As Integer = 0  'Data for 'DeviceSize'
                Dim sharrDeviceValue() As Short         'Data for 'DeviceValue'
                Dim szarrData() As String               'Array for 'Data'
                Dim iNumber As Integer                  'Loop counter

                'Displayed output data is cleared.
                ClearDisplay()

                'Get the list of 'DeviceName'.
                '  Join each line(StringType array) of 'DeviceName' by the separator '\n',
                '  and create a joined string data.
                szDeviceName = String.Join(vbLf, txt_DeviceNameRandom.Lines)

                If GetIntValue(txt_DeviceSizeRandom, iNumberOfDeviceName) = False Then
                    'If failed, this process is end.
                    Exit Sub
                End If

                ReDim sharrDeviceValue(iNumberOfDeviceName - 1)

                Try
                    iReturnCode = AxActUtlType1.ReadDeviceRandom2(szDeviceName,  iNumberOfDeviceName, sharrDeviceValue(0))
                Catch exException As Exception
                    MessageBox.Show(exException.Message, Name, MessageBoxButtons.OK, MessageBoxIcon.Error)
                    Exit Sub
                End Try
                txt_ReturnCode.Text = String.Format("0x{0:x8} [HEX]", iReturnCode)

                If iReturnCode = 0 Then

                    'Assign the array for the read data.
                    ReDim szarrData(iNumberOfDeviceName - 1)

                    'Copy the read data to the 'lpszarrData'.
                    For iNumber = 0 To iNumberOfDeviceName - 1
                        szarrData(iNumber) = sharrDeviceValue(iNumber).ToString()
                    Next iNumber

                    'Set the read data to the 'Data', and display it.
                    txt_Data.Lines = szarrData
                End If

            End Sub

        #End Region


          
        wenluderen
        人人為我我為人人
        級(jí)別: 略有小成
        精華主題: 0
        發(fā)帖數(shù)量: 186 個(gè)
        工控威望: 322 點(diǎn)
        下載積分: 6183 分
        在線(xiàn)時(shí)間: 43(小時(shí))
        注冊(cè)時(shí)間: 2010-09-23
        最后登錄: 2024-02-19
        查看wenluderen的 主題 / 回貼
        5樓  發(fā)表于: 2018-07-23 15:09
        測(cè)試隨機(jī)寫(xiě)入
        #Region "隨機(jī)寫(xiě)入 PLC里面的地址"
            Private Sub btn_WriteDeviceRandom2_Click(sender As Object, e As EventArgs) Handles btn_WriteDeviceRandom2.Click

                Dim iReturnCode As Integer              'Return code
                Dim szDeviceName As String = ""         'List data for 'DeviceName'
                Dim iNumberOfDeviceName As Integer = 0  'Data for 'DeviceSize'
                Dim sharrDeviceValue() As Short         'Data for 'DeviceValue'

                'Displayed output data is cleared.
                ClearDisplay()

                'Get the list of 'DeviceName'.
                'Join each line(StringType array) of 'DeviceName' by the separator '\n',
                'and create a joined string data.
                szDeviceName = String.Join(vbLf, txt_DeviceNameRandom.Lines)

                'Check the 'DeviceSize'.(If succeeded, the value is gotten.)
                If GetIntValue(txt_DeviceSizeRandom, iNumberOfDeviceName) = False Then
                    'If failed, this process is end.
                    Exit Sub
                End If

                'Check the 'DeviceValue'.(If succeeded, the value is gotten.)
                ReDim sharrDeviceValue(iNumberOfDeviceName - 1)
                If GetShortArray(txt_DeviceDataRandom, sharrDeviceValue) = False Then
                    'If failed, this process is end.
                    Exit Sub
                End If

                Try
                    iReturnCode = AxActUtlType1.WriteDeviceRandom2(szDeviceName, iNumberOfDeviceName, sharrDeviceValue(0))
                Catch exception As Exception

                    MessageBox.Show(exception.Message, Text, MessageBoxButtons.OK, MessageBoxIcon.Error)
                    Exit Sub

                End Try
                txt_ReturnCode.Text = String.Format("0x{0:x8} [HEX]", iReturnCode)


            End Sub
        #End Region

        wenluderen
        人人為我我為人人
        級(jí)別: 略有小成
        精華主題: 0
        發(fā)帖數(shù)量: 186 個(gè)
        工控威望: 322 點(diǎn)
        下載積分: 6183 分
        在線(xiàn)時(shí)間: 43(小時(shí))
        注冊(cè)時(shí)間: 2010-09-23
        最后登錄: 2024-02-19
        查看wenluderen的 主題 / 回貼
        6樓  發(fā)表于: 2018-07-23 15:24
        測(cè)試成塊的數(shù)據(jù)讀取
        #Region "測(cè)試成塊的數(shù)據(jù)讀取"
            Private Sub btn_ReadDeviceBlock2_Click(sender As Object, e As EventArgs) Handles btn_ReadDeviceBlock2.Click

              Dim iReturnCode As Integer              'Return code
                Dim szDeviceName As String = ""         'List data for 'DeviceName'
                Dim iNumberOfDeviceName As Integer = 0  'Data for 'DeviceSize'
                Dim sharrDeviceValue() As Short         'Data for 'DeviceValue'
                Dim szarrData() As String               'Array for 'Data'
                Dim iNumber As Integer                  'Loop counter


                'Displayed output data is cleared.
                ClearDisplay()

                'Get the list of 'DeviceName'.
                '  Join each line(StringType array) of 'DeviceName' by the separator '\n',
                '  and create a joined string data.
                szDeviceName = String.Join(vbLf, txt_DeviceNameBlock.Lines)

                'Check the 'DeviceSize'.(If succeeded, the value is gotten.)
                If GetIntValue(txt_DeviceSizeBlock, iNumberOfDeviceName) = False Then
                    'If failed, this process is end.
                    Exit Sub
                End If

                'Assign the array for 'DeviceValue'.
                ReDim sharrDeviceValue(iNumberOfDeviceName - 1)

                Try
                    iReturnCode = AxActUtlType1.ReadDeviceBlock2(szDeviceName, iNumberOfDeviceName, sharrDeviceValue(0))
                Catch exException As Exception
                    MessageBox.Show(exException.Message, Name, MessageBoxButtons.OK, MessageBoxIcon.Error)
                    Exit Sub
                End Try


                txt_ReturnCode.Text = String.Format("0x{0:x8} [HEX]", iReturnCode)
                If iReturnCode = 0 Then

                    'Assign array for the read data.
                    ReDim szarrData(iNumberOfDeviceName - 1)

                    'Copy the read data to the 'lpszarrData'.
                    For iNumber = 0 To iNumberOfDeviceName - 1
                        szarrData(iNumber) = sharrDeviceValue(iNumber).ToString()
                    Next iNumber

                    'Set the read data to the 'Data', and display it.
                    txt_Data.Lines = szarrData
                End If


            End Sub
        #End Region


        不小心遇見(jiàn)你
        自動(dòng)項(xiàng)目、PLC、視覺(jué)、通訊等工控軟件開(kāi)發(fā)QQ3515716
        級(jí)別: 工控俠客

        精華主題: 3 篇
        發(fā)帖數(shù)量: 2131 個(gè)
        工控威望: 3053 點(diǎn)
        下載積分: 25412 分
        在線(xiàn)時(shí)間: 1532(小時(shí))
        注冊(cè)時(shí)間: 2014-01-05
        最后登錄: 2025-09-04
        查看不小心遇見(jiàn)你的 主題 / 回貼
        7樓  發(fā)表于: 2018-07-23 18:37
        項(xiàng)目、視覺(jué)、通訊QQ3515716
        nlb2001
        級(jí)別: 略有小成
        精華主題: 0
        發(fā)帖數(shù)量: 96 個(gè)
        工控威望: 237 點(diǎn)
        下載積分: 577 分
        在線(xiàn)時(shí)間: 65(小時(shí))
        注冊(cè)時(shí)間: 2013-02-03
        最后登錄: 2025-06-11
        查看nlb2001的 主題 / 回貼
        8樓  發(fā)表于: 2018-08-03 11:19
        神級(jí)操作,先收藏了!!
        zq362622701
        級(jí)別: 略有小成
        精華主題: 0
        發(fā)帖數(shù)量: 48 個(gè)
        工控威望: 270 點(diǎn)
        下載積分: 2075 分
        在線(xiàn)時(shí)間: 55(小時(shí))
        注冊(cè)時(shí)間: 2012-12-21
        最后登錄: 2025-07-29
        查看zq362622701的 主題 / 回貼
        9樓  發(fā)表于: 2018-08-09 10:57
        現(xiàn)在都在搞上位機(jī)了
        zjh0102
        級(jí)別: 論壇先鋒
        精華主題: 0
        發(fā)帖數(shù)量: 59 個(gè)
        工控威望: 1259 點(diǎn)
        下載積分: 1783 分
        在線(xiàn)時(shí)間: 102(小時(shí))
        注冊(cè)時(shí)間: 2018-01-27
        最后登錄: 2022-03-09
        查看zjh0102的 主題 / 回貼
        10樓  發(fā)表于: 2019-01-22 10:18
        想看C#的
        cd_looper
        好想放飛自我
        級(jí)別: 工控俠客
        精華主題: 0
        發(fā)帖數(shù)量: 367 個(gè)
        工控威望: 2014 點(diǎn)
        下載積分: 3363 分
        在線(xiàn)時(shí)間: 226(小時(shí))
        注冊(cè)時(shí)間: 2013-11-16
        最后登錄: 2025-07-05
        查看cd_looper的 主題 / 回貼
        11樓  發(fā)表于: 2019-01-22 11:07
        想看Labview的  
        Easy doesn't enter into grown-up life!!!
        V:ZQL276438265

        主站蜘蛛池模板: 中文字幕人妻中文AV不卡专区| 国产精品国三级国产av| 九九热视频精品在线播放| 成人区人妻精品一区二蜜臀| 图片区小说区av区| 深夜福利啪啪片| 中文字幕日韩精品亚洲一区| 国产真实伦在线观看视频| 久久五月丁香合缴情网| 国产精品视频亚洲二区| 亚洲av男人电影天堂热app| 亚洲国产精品自产拍久久| 在线亚洲妇色中文色综合| 国产一区二区不卡在线视频| 国内精品自国内精品自久久| 亚洲av色香蕉一区二区| 国产仑乱无码内谢| 亚洲精品久荜中文字幕| 成人亚欧欧美激情在线观看 | 激情国产一区二区三区四| 少妇激情av一区二区三区| 亚洲夜色噜噜av在线观看 | 久久国产精品老女人| 福利视频在线一区二区| 国产成人精品成人a在线观看| 亚洲欧洲一区二区天堂久久| 日韩欧美亚洲综合久久| 亚洲国产av区一区二| 欧美激情一区二区三区成人| 欧美黑人大战白嫩在线| 久久国内精品一国内精品| 日韩精品无码一区二区视频| 国产成人理论在线视频观看| 国产国拍亚洲精品永久软件| 久久被窝亚洲精品爽爽爽 | 激情亚洲专区一区二区三区| 青草青草久热精品视频在线观看| 久久夜色噜噜噜亚洲av| 欧美伦费免费全部午夜最新| 精品国产精品国产偷麻豆| 67194熟妇在线观看线路|