RobotStudio event

RS 3.1

Options

I have heard that the new 3.1 will bee released today.

When do i get it?

I hope that the error with robhold wobj is corrected

Best regards Klaus

imageimageimageimage

 

 

Best Regards

Klaus Soenderhegn
www.cadalysator.dk

Comments

  • Hello Klaus,

    You are right, RobotStudio 3.1 is "released" in the sense that the Master CD has been sent to our production company.They will start sending the boxes out, to our Subscription Service customers, during next week, add 2-3 days for delivery and you will have your upgrade shortly.

    Best regards

    /Ulrika Mor?n

    Support Engineer M. Sc.

     

     

  • Melk
    Options

    Target generated as .NoName. in the Virtual Controller
    This problem is now resolved.

    Big smile

     

    <@Logan&gt; I spent a minute looking at my own code by accident.
    <Beeth> And your point is?
    <@Logan&gt; I was thinking "What the hell is this guy doing?"
  • Klaus
    Klaus ✭✭
    Options
    [QUOTE=John Wiberg]

    Release_notes_for_RobotStudio_3.1.zip

    image

    [/QUOTE]

    It lokkes that you have solved my problem with the robhold true on Wobj. Looking forward to try the new 3.1.imageimageimage

    Best Regards

    Klaus Soenderhegn
    www.cadalysator.dk
  • John Wiberg
    Options

    OK. I got my boxes today. So it's in shipping now.

  • GPetak
    GPetak ✭✭
    Options
    [QUOTE=Melk]

    Target generated as .NoName. in the Virtual Controller
    This problem is now resolved.

    Big smile

     

    [/QUOTE]
  • GPetak
    GPetak ✭✭
    Options

    How to resolve problem whit targets generated as .NoName in the Virtual Controller?

  • Melk
    Options
    This problem is solved by installing RobotStudio 3.1 Wink. It is stated in the release notes of RS 3.1
    <@Logan&gt; I spent a minute looking at my own code by accident.
    <Beeth> And your point is?
    <@Logan&gt; I was thinking "What the hell is this guy doing?"
  • John Wiberg
    Options

    GPetak
    If you get that problem you should run this macro:

    Sub RenameInstances()

        Dim TargetInst As Target
        Dim TheLot As Targets
       
        Dim TargetName As String
        Dim tmpString As Variant
       
        Set TheLot = ActiveStation.Targets
       
        On Error GoTo errh
       
        'Re-rename ALL Target instances. This will actually name the Target definitions!
        For Each TargetInst In TheLot
       
            'Remove the ":<num>" from the original name
            TargetName = TargetInst.Name
            tmpString = Split(TargetName, ":")
            TargetName = tmpString(0)
           
            'Rename the Target...
            TargetInst.Name = "tmpTargetName"
            TargetInst.Name = TargetName
           
            Call ActiveStation.PrintLog("Log", TargetName & " Re-renamed!")
           
        Next TargetInst
        Exit Sub
       
    errh:
        Call ActiveStation.PrintLog("Log", TargetName & " NOT Re-renamed!")

    End Sub