91美女视频-亚洲免费观看视频-欧美a∨-久热在线视频-日韩黄网站-成av人片在线观看www-久操综合-超碰av在线播放-性欧美欧美巨大69-婷婷二区-av男人的天堂网-中文字幕一区在线播放-玖草在线观看-国产网址在线观看-免费在线不卡av

wenluderen
人人為我我為人人
級別: 略有小成
精華主題: 0
發帖數量: 185 個
工控威望: 322 點
下載積分: 6371 分
在線時間: 43(小時)
注冊時間: 2010-09-23
最后登錄: 2024-02-19
查看wenluderen的 主題 / 回貼
樓主  發表于: 2018-07-23 14:32
MX Component 使用控件通訊 就可以直接PLC內部地址的名字,不要在整個標簽。
標簽能了很久 還是不行。


****
控件有很多






感覺三菱每個可以通訊的硬件 都有一個對應的  控制可以使用

    
本帖最近評分記錄:
  • 下載積分:+5(木木2012) 感謝分享!
    不小心遇見你
    自動項目、PLC、視覺、通訊等工控軟件開發QQ3515716
    級別: 工控俠客

    精華主題: 3 篇
    發帖數量: 2102 個
    工控威望: 3096 點
    下載積分: 25703 分
    在線時間: 1572(小時)
    注冊時間: 2014-01-05
    最后登錄: 2026-02-15
    查看不小心遇見你的 主題 / 回貼
    1樓  發表于: 2018-07-23 14:40
    項目、視覺、通訊QQ3515716
    wenluderen
    人人為我我為人人
    級別: 略有小成
    精華主題: 0
    發帖數量: 185 個
    工控威望: 322 點
    下載積分: 6371 分
    在線時間: 43(小時)
    注冊時間: 2010-09-23
    最后登錄: 2024-02-19
    查看wenluderen的 主題 / 回貼
    2樓  發表于: 2018-07-23 14:46
    驗證通過AxActUtlTypeLib.AxActUtlType訪問Q04UDV的CPU,硬件接口為以太網
    ***
    新建一個VB.net  ,窗口程序,在工具欄里面添加 控件
    如下圖:

    wenluderen
    人人為我我為人人
    級別: 略有小成
    精華主題: 0
    發帖數量: 185 個
    工控威望: 322 點
    下載積分: 6371 分
    在線時間: 43(小時)
    注冊時間: 2010-09-23
    最后登錄: 2024-02-19
    查看wenluderen的 主題 / 回貼
    3樓  發表于: 2018-07-23 15:00
    添加OPEN 和CLOSE函數

    #Region "打開鏈接"
        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 "關閉鏈接"
        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

    ****
    測試可以通過

    wenluderen
    人人為我我為人人
    級別: 略有小成
    精華主題: 0
    發帖數量: 185 個
    工控威望: 322 點
    下載積分: 6371 分
    在線時間: 43(小時)
    注冊時間: 2010-09-23
    最后登錄: 2024-02-19
    查看wenluderen的 主題 / 回貼
    4樓  發表于: 2018-07-23 15:05
    隨機讀取

    #Region "隨機寫入 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
    人人為我我為人人
    級別: 略有小成
    精華主題: 0
    發帖數量: 185 個
    工控威望: 322 點
    下載積分: 6371 分
    在線時間: 43(小時)
    注冊時間: 2010-09-23
    最后登錄: 2024-02-19
    查看wenluderen的 主題 / 回貼
    5樓  發表于: 2018-07-23 15:09
    測試隨機寫入
    #Region "隨機寫入 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
    人人為我我為人人
    級別: 略有小成
    精華主題: 0
    發帖數量: 185 個
    工控威望: 322 點
    下載積分: 6371 分
    在線時間: 43(小時)
    注冊時間: 2010-09-23
    最后登錄: 2024-02-19
    查看wenluderen的 主題 / 回貼
    6樓  發表于: 2018-07-23 15:24
    測試成塊的數據讀取
    #Region "測試成塊的數據讀取"
        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


    不小心遇見你
    自動項目、PLC、視覺、通訊等工控軟件開發QQ3515716
    級別: 工控俠客

    精華主題: 3 篇
    發帖數量: 2102 個
    工控威望: 3096 點
    下載積分: 25703 分
    在線時間: 1572(小時)
    注冊時間: 2014-01-05
    最后登錄: 2026-02-15
    查看不小心遇見你的 主題 / 回貼
    7樓  發表于: 2018-07-23 18:37
    項目、視覺、通訊QQ3515716
    nlb2001
    級別: 略有小成
    精華主題: 0
    發帖數量: 97 個
    工控威望: 237 點
    下載積分: 765 分
    在線時間: 65(小時)
    注冊時間: 2013-02-03
    最后登錄: 2025-11-06
    查看nlb2001的 主題 / 回貼
    8樓  發表于: 2018-08-03 11:19
    神級操作,先收藏了!!
    zq362622701
    級別: 略有小成
    精華主題: 0
    發帖數量: 47 個
    工控威望: 270 點
    下載積分: 2263 分
    在線時間: 55(小時)
    注冊時間: 2012-12-21
    最后登錄: 2025-07-29
    查看zq362622701的 主題 / 回貼
    9樓  發表于: 2018-08-09 10:57
    現在都在搞上位機了
    zjh0102
    級別: 論壇先鋒
    精華主題: 0
    發帖數量: 56 個
    工控威望: 1259 點
    下載積分: 1972 分
    在線時間: 102(小時)
    注冊時間: 2018-01-27
    最后登錄: 2022-03-09
    查看zjh0102的 主題 / 回貼
    10樓  發表于: 2019-01-22 10:18
    想看C#的
    cd_looper
    好想放飛自我
    級別: 工控俠客
    精華主題: 0
    發帖數量: 366 個
    工控威望: 2019 點
    下載積分: 3562 分
    在線時間: 226(小時)
    注冊時間: 2013-11-16
    最后登錄: 2026-01-13
    查看cd_looper的 主題 / 回貼
    11樓  發表于: 2019-01-22 11:07
    想看Labview的  
    Easy doesn't enter into grown-up life!!!
    V:ZQL276438265

    主站蜘蛛池模板: av不卡一区 | 久久二| 亚洲精品影视 | 国产精品久久久久久久久久久免费看 | 国产精品无码久久久久久 | 狠狠狠狠狠狠狠 | 非洲黑寡妇性猛交视频 | 性色av一区二区三区在线观看 | av色站 | 午夜窝窝 | www.88av| 青青网站| 日本精品免费视频 | 国产亚洲久久 | 黄色片在线观看视频 | 色视av| 插少妇视频 | 国产精品久久久久久久久免费看 | 亚洲国产无线乱码在线观看 | 对白刺激theporn| 色葡萄影院 | 99re7| 天天射天天舔 | 欧美又粗又大xxxxbbbb疯狂 | 91精品啪在线观看国产 | 狠狠操网 | 人人人妻人人澡人人爽欧美一区 | 少妇视频在线观看 | 四虎影视大全 | 精品国产乱码久久久 | 法国空姐电影在线观看 | 欧美日韩高清一区二区 | 极品av在线 | 午夜影院在线免费观看 | 久久99精品久久久 | 免费在线观看一区二区 | 成人毛片在线精品国产 | 一区二区三区久久久久 | 国产精品777 | 亚洲福利影院 | 超碰在线 | 射影院 | 操出白浆视频 | 涩涩的视频在线观看 | 91麻豆精品国产91久久久无需广告 | 在线黄色av| 日本三级理论片 | 亚洲第一黄网 | 免费观看已满十八岁 | 91免费福利 | 亚洲视频在线免费 | 快色视频在线观看 | 九色在线观看视频 | 天堂网2020 | 国产日产精品一区二区 | 精品国产一区二区三区四区精华 | 淫片网站| 四虎色播| 亚洲永久免费网站 | 国产尤物av | 国产一级视频 | 中文字幕乱视频 | 国产精品久久久久久久久久免费 | 思思99热| 国内91视频 | 黄色在线一区 | 亚洲88| 午夜寂寞剧场 | 青青操影院 | 国产毛片一区二区三区 | 国产日韩精品一区 | 呦呦视频在线观看 | 蜜臀少妇久久久久久久高潮 | 免费av电影网站 | 国产传媒在线播放 | 国产精品无码中文 | 五月婷婷六月丁香 | 国产激情图片 | 国产又粗又猛又爽又黄 | 久久久久一区二区三区 | 久久久久成人精品免费播放动漫 | 欧美va天堂 | 就爱啪啪网 | 精品国产一区一区二区三亚瑟 | 免费黄色在线网址 | 爱的色放韩国电影 | 色欲av永久无码精品无码蜜桃 | www视频在线观看免费 | 成人有色视频 | 亚洲AV无码成人国产精品色 | 成人免费毛片免费 | 欧美日韩偷拍视频 | 宇都宫紫苑在线播放 | 中文字幕免费在线观看 | 大尺度电影在线 | 大桥未久恸哭の女教师 | 欧美a级大片 | 色偷偷av男人的天堂 | 漂亮人妻被黑人久久精品 |